Why is node.js so much faster?
1st January 2013
My answer to Why is node.js so much faster? on Quora
There are two main reasons.
Firstly, Node runs on top of Google’s V8 JIT-compiled JavaScript engine, originally written for Chrome, which is extremely fast for an implementation of a dynamic language (faster than any of the various Ruby implementations).
Secondly, Node emphasises callback-based asynchronous IO and makes it very hard to make blocking calls. For web apps that spend most of their time waiting on network or database connections this can be a lot more efficient: http://code.danyork.com/2011/01/...
Ruby can do asynchronous IO using EventMachine or similar but you have to specifically work for it—with Node you get that behaviour by default.
More recent articles
- Maybe Meta's Llama claims to be open source because of the EU AI act - 19th April 2025
- Image segmentation using Gemini 2.5 - 18th April 2025
- GPT-4.1: Three new million token input models from OpenAI, including their cheapest model yet - 14th April 2025