我是靠谱客的博主 文静小蚂蚁,最近开发中收集的这篇文章主要介绍html页面输出helloworld,nodejs实例解析(输出hello world),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下面将带领大家一步步学习nodejs,知道怎么使用nodejs搭建服务器,响应get/post请求,连接数据库等。

搭建服务器页面输出hello world

var http = require('http');

http.createServer(function (request, response) {

response.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});

if(request.url!=="/favicon.ico"){ //清除第2此访问 node.js bug,第二次访问/favicon.ico

console.log('访问');

response.write('hello,world 世界');

response.end();//不写则没有http协议尾

}

}).listen(8000);

console.log('Server running at http://127.0.0.1:8000/');

/*

启动服务

cmd下执行:

node 1_helloworld.js

浏览器访问:http://localhost:8000

*/

基本语句说明:

1)require 语句,模块通过它加载。

对于该语句的解析可参见文章《node.js require() 源码解读》(https://www.jb51.net/article/76308.htm)

2)http.crea

最后

以上就是文静小蚂蚁为你收集整理的html页面输出helloworld,nodejs实例解析(输出hello world)的全部内容,希望文章能够帮你解决html页面输出helloworld,nodejs实例解析(输出hello world)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部