Paul Draper
Paul Draper

Reputation: 83235

What ECMAScript version does Node.js support?

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

Upvotes: 26

Views: 20053

Answers (1)

Quentin
Quentin

Reputation: 943214

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.

Upvotes: 28

Related Questions