Node js 搭建 一个基础的 HTTP 服务案例
以下是使用 Node.js 搭建一个基础 HTTP 服务的示例代码:
// 引入 Node.js 自带的 http 模块
const http = require('http');
// 创建 HTTP 服务器实例
const server = http.createServer((req, res) => {
// 设置响应头内容类型为纯文本
res.setHeader('Content-Type', 'text/plain');
// 发送响应数据 "Hello World"
res.end('Hello World\n');
});
// 设置服务器监听端口号,这里设置为 3000
const PORT = 3000;
// 让服务器监听指定的端口号
server.listen(PORT, () => {
console.log(`服务器运行在 http://localhost:${PORT}/`);
});
保存这段代码到一个文件中,例如 server.js
,然后在命令行中使用 node server.js
运行它。服务器将启动并监听本地的 3000 端口。打开浏览器,访问 http://localhost:3000/
,你将看到 "Hello World" 的输出。
评论已关闭