日期:2014-05-16 浏览次数:20438 次
这里使用Node.js实现一个最简单的Web服务器。
index.js
var http = require('http');
http.createServer(function(req,res){
res.writeHead(200,{'Content-Type':'text/plain'});
res.end('Hello Node.js\n');
}).listen(8080,"127.0.0.1");
console.log("Server start at http://127.0.0.1:8080");

