开发手册 欢迎您!
软件开发者资料库

用法 | Node.js

Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。Node.js 的包管理器 npm,是全球最大的开源库生态系统。

Node.js v8.x 中文文档


目录

用法#

node [options] [V8 options] [script.js | -e "script" | - ] [arguments]

可查看命令行选项文档,了解更多使用 Node.js 运行脚本的选项与方法。

例子#

例子,一个使用 Node.js 编写的 web服务器,响应返回 'Hello World'

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\n');});server.listen(port, hostname, () => {  console.log(`服务器运行在 http://${hostname}:${port}/`);});

要运行这个服务器,需将代码保存到一个名为 example.js 的文件,并使用 Node.js 执行:

$ node example.js服务器运行在 http://127.0.0.1:3000/

文档中大部分例子都可以用类似的方法运行。