然后在Visual Studio Code测试代码
var http=require(‘http‘);
http.createServer(function(req,res)
{
res.writeHead(200,{‘Content-Type‘:‘text/html;charset=utf-8‘});
res.end(‘我在用Node.JS写程序‘);
}).listen(3000,‘127.0.0.2‘)
console.log("Server running at http://127.0.0.2:3000");
最后在浏览器中访问http://127.0.0.2:3000 则显示
原文:http://blog.51cto.com/13886532/2150205