Node.js
Entorno de ejecución JS.
Node.js is built on Chrome's V8 JavaScript engine. It uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.
graph LR
Center["Node.js"]:::main
Rel_javascript["javascript"]:::related -.-> Center
click Rel_javascript "/terms/javascript"
Rel_decentralized_application_dapp["decentralized-application-dapp"]:::related -.-> Center
click Rel_decentralized_application_dapp "/terms/decentralized-application-dapp"
Rel_open_source["open-source"]:::related -.-> Center
click Rel_open_source "/terms/open-source"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 Prueba de conocimiento
1 / 1
🧒 Explícalo como si tuviera 5 años
A tool that lets your computer run [JavaScript](/es/terms/javascript) code by itself, not just inside a browser like Chrome or Safari. It's like giving JavaScript its own engine to drive a car.
🤓 Expert Deep Dive
Uses the Libuv library to handle asynchronous I/O. Operates on a single-threaded event [loop](/es/terms/event-loop), but can handle thousands of concurrent connections. Key modules include 'fs', 'path', and 'http'.