Node.js 教程
Node.js 是一个开源服务端环境。
Node.js 基于 Chrome V8 引擎的 JavaScript 运行环境,使用了一个事件驱动、非阻塞式 I/O 模型,让 JavaScript 运行在服务端的开发平台。
通过例子学习
实例
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World!');
}).listen(8080);
在命令行界面中运行的示例
在本教程中,将通过在命令行界面中显示结果来更好地解释一些示例。
实例
console.log('This example is different!');
console.log('The result is displayed in the Command Line Interface');
Node.js 参考引用
Node.js 有一系列的内置模块.
下载 Node.js
从 Node.js 的官方网站下载 : https://nodejs.org