如何快速简单使用node.js搭建一个web服务器
在Node.js中,你可以使用内置的http
模块来创建一个简单的web服务器。以下是一个示例代码:
const http = require('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(`Server running at http://localhost:${PORT}/`);
});
保存这段代码到一个文件中,比如server.js
,然后在命令行中运行它:
node server.js
服务器将运行在端口3000上,并对所有请求返回“Hello World”。你可以通过浏览器访问http://localhost:3000
查看结果。
评论已关闭