return to the Linux Foundation
Title | Node.js |
Acronym | |
Version | 14.3.0 |
Operating Systems | Linux, macOS, Windows, SmartOS, FreeBSD, OpenBSD, IBM AIX |
Downloads | https://nodejs.org/en/download/ |
Repository | https://github.com/nodejs/node |
Supported Languages | JavaScript |
License | MIT |
Reference | https://nodejs.org/en/ |
EventMachine::run()
. In Node.js, there is no such start-the-event-loop call. Node.js simply enters the event loop after executing the input script. Node.js exits the event loop when there are no more callbacks to perform. This behavior is like browser JavaScript — the event loop is hidden from the user.child_process.fork()
1) API, and are designed to be easy to communicate with. Built upon that same interface is the cluster
2) module, which allows you to share sockets between processes to enable load balancing over your cores.