Node.js

Environnement d'exécution JS.

Contenu en attente de traduction. Affichage de la version anglaise.

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;

      

🧠 Test de connaissances

1 / 1

🧒 Explique-moi comme si j'avais 5 ans

A tool that lets your computer run [JavaScript](/fr/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](/fr/terms/event-loop), but can handle thousands of concurrent connections. Key modules include 'fs', 'path', and 'http'.

📚 Sources