1
0
Fork 0
1Panel-Appstore/node
BugKing 1d98b2facd fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
..
12.22.12 fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
14.21.3 feat: 运行环境增加 Label (#2342) 2024-10-22 16:35:49 +08:00
16.20.2 feat: 运行环境增加 Label (#2342) 2024-10-22 16:35:49 +08:00
18.20.3 fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
20.14.0 fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
21.7.3 fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
22.2.0 fix: run custom script with eval (#2848) 2024-12-28 18:24:06 +08:00
README.md feat: 增加 Node.js 运行环境 2023-09-26 15:13:30 +08:00
README_en.md docs: Add English README (#2662) 2024-12-03 21:59:18 +08:00
data.yml feat: 推荐应用调整 2024-10-04 23:17:39 +08:00
logo.png update nodejs logo (#1558) 2024-06-11 10:36:00 +08:00

README_en.md

Node.js

Node.js is a popular server-side runtime environment that enables developers to build dynamic and scalable web applications and networked software.

Main Features:

  • Non-Blocking I/O: Node.js processes multiple concurrent connections efficiently without blocking operations, making it ideal for real-time applications.

  • JavaScript: Node.js uses JavaScript for server-side programming, allowing developers to use the same language for both client-side and server-side application development, simplifying web application development.

  • Package Management: Node.js comes with a powerful package manager that facilitates easy installation, management, and sharing of code libraries, speeding up development.

  • Cross-Platform: Node.js runs seamlessly on Windows, Linux, and macOS, making it versatile for different deployment needs.

  • Event-Driven: Developers can easily listen to and handle events, which is particularly suitable for creating real-time, interactive applications.

  • Modular Design: Node.js supports modular programming, allowing developers to break down code into smaller, reusable components, improving maintainability and scalability.

  • Community Support: With a large and active developer community, Node.js offers a vast array of modules and libraries, as well as community assistance.

  • Single-Threaded: Node.js uses a single-threaded model combined with an event loop and asynchronous operations, achieving efficient concurrency while avoiding challenges associated with multithreaded programming.