【使用Node.js搭建自己的HTTP服务器】
以下是使用Node.js搭建一个简单HTTP服务器的代码示例:
const http = require('http');
// 创建HTTP服务器并定义响应逻辑
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
});
// 设置服务器监听端口
const PORT = 3000;
server.listen(PORT, () => {
console.log(`服务器运行在 http://localhost:${PORT}/`);
});
这段代码首先引入了Node.js内置的http
模块,然后创建了一个HTTP服务器实例。服务器监听在端口3000上的请求,并对每一个接收到的请求返回响应,响应内容为“Hello World”。当服务器开始监听端口时,在控制台输出服务器的URL。
评论已关闭