- assert - 断言
- async_hooks - 异步钩子
- Buffer - 缓冲器
- child_process - 子进程
- cluster - 集群
- console - 控制台
- crypto - 加密
- debugger - 调试器
- dgram - 数据报
- dns - 域名服务器
- domain - 域
- Error - 错误
- events - 事件触发器
- fs - 文件系统
- global - 全局变量
- http - HTTP
- http2 - HTTP/2
- https - HTTPS
- inspector - 检查器
- module - 模块
- net - 网络
- os - 操作系统
- path - 路径
- perf_hooks - 性能钩子
- process - 进程
- punycode - 域名代码
- querystring - 查询字符串
- readline - 逐行读取
- repl - 交互式解释器
- stream - 流
- string_decoder - 字符串解码器
- timer - 定时器
- tls - 安全传输层
- trace_events - 跟踪事件
- tty - 终端
- url - URL
- util - 实用工具
- v8 - V8引擎
- vm - 虚拟机
- wasi - WASI
- worker_threads - 工作线程
- zlib - 压缩
用法与示例#
使用方法#
node [options] [V8 options] [script.js | -e "script" | - ] [arguments]
详见命令行选项文档。
示例#
一个使用 Node.js 编写的 web 服务器的示例,响应返回 '你好,世界'
:
本文档中的命令以 $
或 >
开头,以复现它们在用户终端中的显示方式。
实际使用时不用包含 $
和 >
字符。
它们用于展示每个命令的开始。
不以 $
或 >
字符开头的命令行展示的是上一个命令的输出。
首先,确保已经下载并安装了 Node.js。 关于安装的更多信息,请参见通过包管理器安装 Node.js。
现在,创建一个空的名为 projects
的项目文件夹,然后导航到它。
在 Linux 和 Mac 上:
$ mkdir ~/projects
$ cd ~/projects
在 Windows CMD 上:
> mkdir %USERPROFILE%\projects
> cd %USERPROFILE%\projects
在 Windows PowerShell 上:
> mkdir $env:USERPROFILE\projects
> cd $env:USERPROFILE\projects
接下来,在 projects
文件夹中创建一个新的源文件,并将其命名为 hello-world.js
。
在任何首选的文本编辑器中打开 hello-world.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('你好,世界\n');
});
server.listen(port, hostname, () => {
console.log(`服务器运行在 http://${hostname}:${port}/`);
});
保存文件,返回终端窗口,然后输入以下命令:
$ node hello-world.js
终端中会输出以下内容:
服务器运行在 http://127.0.0.1:3000/
现在,打开任何首选的 web 浏览器并访问 http://127.0.0.1:3000
。
如果浏览器显示字符串 你好,世界
,则表明服务器正在运行。