我已经用 no子书写了一个简单的服务器。 目前,服务器通过向浏览器撰写“hello世界”。
服务器档案类似:
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8080);
我在浏览器中使用这个URL来启动“hello World”反应:
http://localhost:8080/
在我通过这样一部《世界语言》时,我想能打开一个基本的html页:
http://localhost:8080/test.html
我通过许多辅导员和一些中途员额,但这项任务没有太多。 是否有任何人知道如何通过简单修改服务器来做到这一点。 j 档案?