Node.js 教程

Node.js 是一个开源服务器环境。

Node.js 允许您在服务器上运行 JavaScript。

立即开始学习 Node.js »

通过实例学习

我们的"Show Node.js" 工具让学习 Node.js 变得容易,它显示了代码和结果。

示例

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World!');
}).listen(8080);
运行示例 »

单击"Run example" 按钮查看其工作原理。


在命令行界面中运行的示例

在本教程中,将有一些示例,通过在命令行界面中显示结果可以更好地解释这些示例。

发生这种情况时,"Show Node.js" 工具将在右侧黑屏中显示结果:

示例

console.log('This example is different!');
console.log('The result is displayed in the Command Line Interface');
运行示例 »

单击"Run example" 按钮查看其工作原理。



Node.js 参考

Node.js 有一组内置模块。

内置模块


下载 Node.js

从 Node.js 官方网站下载 Node.js:https://nodejs.org