Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Node.js 教程

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

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

立即开始学习 Node.js »

通过示例学习

我们的“显示 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);
运行示例 »

点击“运行示例”按钮查看其工作原理。


命令行界面中的运行示例

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

发生这种情况时,“显示 Node.js”工具将在右侧的黑色屏幕上显示结果

示例

console.log('此示例有所不同!');
console.log('结果显示在命令行界面中');
运行示例 »

点击“运行示例”按钮查看其工作原理。


我的学习

使用 W3Schools 上的免费“我的学习”程序跟踪您的进度。

登录您的帐户,开始赚取积分!

这是一个可选功能。您可以在不使用“我的学习”的情况下学习 W3Schools。

Track your progress with at W3Schools.com

Node.js 参考

Node.js 有一组内置模块。

内置模块


下载 Node.js

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


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.