从 W3Schools.cn 在线教程学习 Web 网络开发
运行结果尺寸: 625 x 532
x
 
var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World!');
}).listen(8080);
http://localhost:8080