How to check the current Node.js version at runtime
Run process.version
:
The version
property of the process
object returns a string with the current Node.js version.
In the browser the process
object is not defined, so you will get a ReferenceError:
Another way is to reference process.versions
(plural):
This returns an object that contains various properties referencing each component’s version.
To get the major version (in this example 12
) you can use
process.versions.node.split('.')[0]
→ Get my Node.js Handbook
→ I wrote 17 books to help you become a better developer:
- C Handbook
- Command Line Handbook
- CSS Handbook
- Express Handbook
- Git Cheat Sheet
- Go Handbook
- HTML Handbook
- JS Handbook
- Laravel Handbook
- Next.js Handbook
- Node.js Handbook
- PHP Handbook
- Python Handbook
- React Handbook
- SQL Handbook
- Svelte Handbook
- Swift Handbook
Also, JOIN MY CODING BOOTCAMP, an amazing cohort course that will be a huge step up in your coding career - covering React, Next.js - next edition February 2025