Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What ECMAScript version does Node.js support?

I've searched the Node.js documentation, but I can't find what version is supported.

like image 715
Paul Draper Avatar asked Sep 05 '25 03:09

Paul Draper


1 Answers

JS engines don't generally announce support for specific versions of the specification. Instead they support specific features.

There are websites which track support, such as this one which shows Node.js 16+ as supporting up to ES2022.

like image 174
3 revs, 3 users 67%Quentin Avatar answered Sep 07 '25 21:09

3 revs, 3 users 67%Quentin