var http = require('http');
const PORT=9080;
function handleRequest(request, response){
response.end('It Works!! Path Hit: ' + request.url);
}
var server = http.createServer(handleRequest);
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log("Server listening on: http://localhost:%s", PORT);
});
答案 0 :(得分:0)
使用节点安装http-server(npm install http-server -g)。 当您全局添加此节点模块时,您可以从路径中的任何位置运行服务器。
答案 1 :(得分:-1)
如何使用节点提供html文件... Loading basic HTML in Node.js
您使用fs模块读取html文件,然后创建http服务器,对请求您将html写入响应然后结束响应。
如果你得到快递,它会容易得多。 Render basic HTML view?