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);
运行实例 »
单击"运行实例"按钮查看其工作原理。
在命令行界面中运行的实例
在本教程中,通过在命令行界面中显示结果,可以更好地解释一些实例。
这种情况 "Show Node.js" 工具将在右侧的黑屏上显示结果:
实例
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 官网下载 Node.js: https://nodejs.org