我在 nodejs 中运行一个非常简单的脚本,加载一个静态 html 文件。
var http = require("http");
fs = require('fs');
fs.readFile('./index.html', function (err, html) {
if (err) {
throw err;
}
});
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(1994);
每当我启动应用程序时,它都会立即关闭。我在应用程序启动的半秒内看到控制台上的文本,但随后窗口关闭。每次都会发生这种情况。