nodejs 创建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}/`);
});
这段代码创建了一个简单的HTTP服务器,监听3000端口,对所有请求返回“Hello World”。这是Node.js中创建HTTP服务器的基本例子,展示了如何使用Node.js的HTTP模块来处理HTTP请求。
评论已关闭