http 模块
2021-08-19 本文已影响0人
浅浅_2d5a
// 引入http模块
var http = require('http');
// 创建http server
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/');
通过简单的http.createServer()创建一个server,通过server.listen监听。 一个简单的http服务器就完成了。