我们的"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:https://nodejs.org
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!