创建nodejs服务器

demo:

var http=require('http');
http.createServer(function(req,res){
    res.writeHead(200,{'Conten-Type':'text/plain'});
    res.end('Hello world\n');
}).listen(1337,'127.0.0.1');
console.log('Server running at http://127.0.0.1:1337');
原文地址:https://www.cnblogs.com/wangwenfei/p/nodejshttp.html