A thorough set of benchmarks covering recent performance advancements made in Node.js. The improvements between Node 18 and 20 up to version 22 might surprise you - itβs clear the team has put a lot of work into this area.
Gonzaga and Parody (NodeSource)
Please open Telegram to view this post
VIEW IN TELEGRAM
π6π₯2β€1
Starting today until December 31, weβll be wrapping up the year with surveys and celebrations! π
During this time, weβll pause posting JavaScript updates to focus on reflecting and celebrating together. Thank you for your understanding, and we wish you and your families a joyful and peaceful holiday season!π
During this time, weβll pause posting JavaScript updates to focus on reflecting and celebrating together. Thank you for your understanding, and we wish you and your families a joyful and peaceful holiday season!
Please open Telegram to view this post
VIEW IN TELEGRAM
β€11π8π€©3
Please open Telegram to view this post
VIEW IN TELEGRAM
π€£26β€6π5π₯2π€2
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯5β€3
Your salary range in 2024 ($ per year)
Anonymous Poll
44%
0-10K
10%
10-20K
8%
20-30K
8%
30-60K
4%
60-80K
4%
80-100K
4%
100-120K
2%
120-150K
2%
150-180K
13%
180k+
π€£75π€10π9β€5π₯3
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯8π4β€1
Framework/lib of the year?
Anonymous Poll
72%
React π΅
6%
Vue.js π²
7%
Angular πΈ
2%
Svelte π
8%
Next.js
0%
Qwik
1%
Astro
1%
Solid.js
0%
Backbone.js
3%
Other π¬
β€25π8π₯6π€3π€£1
Please open Telegram to view this post
VIEW IN TELEGRAM
Runtime/Framework/lib of the year?
Anonymous Poll
64%
Express.js π€
18%
NestJS π¦
3%
Deno π»
0%
Koa.js
2%
Fastify
1%
Hapi.js
1%
Lodash π
2%
1%
Sequelize
7%
Other π¨
π13β€10π₯5π€3π€£3
Please open Telegram to view this post
VIEW IN TELEGRAM
4π₯31β€15π€©5π4
Please open Telegram to view this post
VIEW IN TELEGRAM
β€3π3
π₯15π5π€£4β€3π€1
You can also provide free-text feedback about your opinion by simply submitting it here.
π4
Or just buy us a coffee βοΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯6β€2π2π€1
Please open Telegram to view this post
VIEW IN TELEGRAM
β€7π6π₯2
A look back at Node's 2024
2024 has been a solid year for Node, with the release of Node.js v22 back in April (now in LTS) and v23 in October. Node also got a new mascot this year (above), Express 5.0 arrived, Node has dabbled with type stripping to better support TypeScript, and a native SQLite module has been under active development. Fingers crossed for an interesting 2025!
Please open Telegram to view this post
VIEW IN TELEGRAM
β€13π₯5π4
Please open Telegram to view this post
VIEW IN TELEGRAM
β€44π₯26π€£6π€©4π€3π1
CHALLENGE
function combine(...arrays) {
return arrays.reduce((acc, arr) => [...acc, ...arr], []);
}
const result = combine([1, 2], [3, 4], [5, 6]);
console.log(result);
π8π€©3
What is the output?
Anonymous Quiz
6%
[]
33%
[[1, 2], [3, 4], [5, 6]]
56%
[1, 2, 3, 4, 5, 6]
5%
[1, [2, 3], 4, [5, 6]]
π₯20π10β€3
CHALLENGE
const obj = {
valueOf() {
return 42;
}
};
const result = obj + 8;
console.log(result);
π11β€3π€£3