How do I find which version of V8 ships with a particular version of Node.js?

Post Reply
aryatechno
Site Admin
Posts: 9
Joined: Tue Sep 26, 2023 9:01 am

How do I find which version of V8 ships with a particular version of Node.js?

Post by aryatechno »

Node.js provides a simple way to list all dependencies and respective versions that ship with a specific binary through the process global object. In case of the V8 engine, type the following in your terminal to retrieve its version:
node -p process.versions.v8
Post Reply