从 W3Schools.cn 在线教程学习 Web 网络开发
运行结果尺寸: 625 x 532
x
 
var http = require('http');
var dt = require('./myfirstmodule');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.write("The date and time is currently: " + dt.myDateTime());
  res.end();
}).listen(8080);
http://localhost:8080