知识共享许可协议
本作品采用知识共享署名-非商业性使用 3.0 未本地化版本许可协议进行许可。

Node.js v0.10.18 手册 & 文档


目录

概述#

An example of a web server written with Node which responds with 'Hello World':

一个输出 “Hello World” 的简单 Web 服务器例子:

console.log('服务器已运行,请打开 http://127.0.0.1:8124/');

To run the server, put the code into a file called example.js and execute it with the node program

要运行这个服务器,先将程序保存为文件 “example.js”,并使用 node 命令来执行:

> node example.js
服务器已运行,请打开 http://127.0.0.1:8124/

All of the examples in the documentation can be run similarly.

所有的文档中的例子均使用相同的方式运行。