我是 node.js 的新手。尝试在请求结束时打印控制台。我尝试访问 localhost:8080 和 localhost:8080/,但终端中没有打印任何内容。知道为什么吗?这样做是因为当我运行此示例时,因为当我尝试在http://tutorialzine.com/2012/08/nodejs-drawing-game/上运行演示时,终端说套接字已启动,但它不呈现 index.html 页面. 所以我不明白为什么这个为其他人提供静态文件的代码对我不起作用。
var static = require('node-static');
//
// Create a node-static server instance to serve the './public' folder
//
// var file = new(static.Server)('./');
require('http').createServer(function (request, response) {
request.addListener('end', function () {
console.log("ended");
});
}).listen(8080);