How to check the node version Quickly
In this post we will give you information about How to check the node version Quickly. Hear we will give you detail about How to check the node version QuicklyAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to check the node.js version which is currently installed in your system.
Using the terminal
Inside the terminal, we can check the node version by running the node –version command or node -v.
node --version
Output:
v12.14.1
or
➜ node -vv12.14.1
This above commands will work on both mac and windows based operating systems.
Accessing the node version programmatically
If you want to programmatically access the node version inside an app, you get it by using the process.version property.
const nodeVersion = process.version;console.log(nodeVersion); // 'v12.14.1'
It returns the node version number in a string format.
Hope this code and post will helped you for implement How to check the node version Quickly. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs