【NodeJs】入门
Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行时环境,用于方便地搭建快速的、可扩展的网络应用。以下是一个简单的 Node.js 应用程序示例,它创建了一个简单的 HTTP 服务器。
// 引入 Node.js 的 http 模块
const http = require('http');
// 创建 HTTP 服务器并定义响应行为
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' }); // 设置 HTTP 头部内容类型为纯文本
res.end('Hello World\n'); // 结束响应并发送数据
});
// 设置服务器监听端口
const PORT = 3000;
server.listen(PORT, () => {
console.log(`服务器运行在 http://localhost:${PORT}/`);
});
要运行这段代码,请确保您已经在计算机上安装了 Node.js。然后,将代码保存为 server.js
并在命令行中运行 node server.js
。之后,打开浏览器并访问 http://localhost:3000/
,您应该能看到输出 "Hello World"。
评论已关闭