Node.js 快速开始

https://nodejs.org/zh-cn/docs/guides/

在安装了 Node.js 之后,我怎么开始呢?

一旦你已经安装了 Node,让我们尝试构建第一个 Web 服务器。 请创建一个“app.js”文件,粘贴以下代码:

const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello World');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

然后使用 node app.js 运行程序,访问 http://localhost:3000,你就会看到一个消息,写着 “Hello World”。

作者:Jeebiz  创建时间:2023-02-27 00:03
最后编辑:Jeebiz  更新时间:2024-02-28 14:53