本文实例讲述了node.js入门实例helloworld。分享给大家供大家参考,具体如下: 将下面的代码保存为:server.js存到E盘下面的node目录中。 var Http = require('
本文实例讲述了node.js入门实例helloworld。分享给大家供大家参考,具体如下:
将下面的代码保存为:server.js存到E盘下面的node目录中。
var Http = require('http');
function myNode(request, response){
response.writeHead(200, {'Content-type':'text/plain'});
response.write('hello world'); //hello world
response.end();
}
http.createServer(myNode).listen(2222); //监听2222端口
console.log('Server has started'); //在控制台提示服务启动
然后在windows命令行输入node e:/node/server.js
提示服务启动(Server has started),然后在浏览器中输入http://localhost:2222/,即可以看到下图的效果。
执行成功后的效果
希望本文所述对大家node.js程序设计有所帮助。
--结束END--
本文标题: node.js入门实例helloworld详解
本文链接: https://lsjlt.com/news/13105.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0