Node --- > 构建一个HTTP服务

代码如下:

var http = require('http');
http.createServer(function (req, res){
  res.writeHead(200,{'Content-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');

运行如下:
在这里插入图片描述
详情见《深入浅出NODE》P156

猜你喜欢

转载自blog.csdn.net/piano9425/article/details/88690104