使用node搭建web服务

安装 npm install http

server.js写入以下内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const http = require('http'); // 引入nodeJS内置的网络传输协议http模块
const server = http.createServer(); //建立服务
const fs=require("fs");


//指定端口号
server.listen(9999, function () {
console.log('Server running at http://127.0.0.1:9999/');
});
//事件响应
server.on("request", function (request, response) {
//设置响应的头
response.writeHead(200,{
"Content-Type":"text/html; charset=utf-8"
});
fs.readFile("./index.html","utf-8",function(err,data){
if(err) {
console.log("index.html loading is failed :"+err);
}else{
response.end(data); //返回index.html页面
}
});
});

启动服务看看


使用node搭建web服务
https://github.com/chergn/chergn.github.io/136f79474e11/
作者
全易
发布于
2024年3月28日
许可协议