The command line for that is:

node -v

Or

node --version

Note:

If node -v doesn't work, but nodejs -v does, then something's not set up quite right on your system. See this other question for ways to fix it.

Answer from JohnnyHK on Stack Overflow
🌐
Mastering JS
masteringjs.io › tutorials › node › version
How to Check Your Node.js Version - Mastering JS
The easiest way to check what version of Node.js you're using is to run node --version from your terminal. This will print your version of Node.js as shown below. $ node --version v10.16.3 $ You can also get the currently running version of ...
🌐
DedicatedCore
dedicatedcore.com › home › how to check & install current node.js version
How to Check & Install Current Node.js Version - DedicatedCore Blog
May 30, 2025 - Open your terminal or command prompt as a first step. There are various approaches to doing this, depending on your operating system. On Windows, press the Windows key + R. Type “cmd” and hit ...
🌐
BlueVPS
bluevps.com › blog › how to check node version [step-by-step guide]
How To Check Node Version [Step-By-Step Guide] - Blog - BlueVPS
Both commands will display the installed Node.js version on your Windows system. Once you install Node.js on your system, you can check the current Node release using the process.version property.
🌐
Educative
educative.io › answers › how-to-check-versions-of-node-and-express-using-cmd
How to check versions of Node and Express using cmd
Use node -v or node --version in the terminal to verify the installed Node.js version. Use npm -v or npm --version to verify the installed npm version. Navigate to your project directory and use npm list express to check the Express.js version ...
🌐
Nomadic Soft
nomadicsoft.io › home › blog › master node.js: quick guide to check node version from the command line | nomadic soft
Master Node.js: Quick Guide to Check Node Version from the Command Line | Nomadic Soft
January 8, 2025 - To check the version of Node.js on Windows, start by opening the Command Prompt. You can do this by typing cmd in the search bar and selecting it from the results.
🌐
Host IT Smart
hostitsmart.com › manage › knowledgebase › 464 › check-node-version-in-windows-cmd.html
How to Check Node Version in Windows CMD?
September 2, 2025 - Learn how to check Node.js version in Windows CMD step by step by using simple commands like node -v and npm -v to verify your Node and npm installation easily.
🌐
Codedamn
codedamn.com › news › node.js
How to check version in Node.js? Check Node version from command line
September 14, 2022 - So just type node --help and you will get a list of all the available flags. ... There will be a lot of information, but all we need to search for is “version”. Right at the bottom, you will find the flag for the version.
Find elsewhere
🌐
Foreignerds
foreignerds.com › home › how to determine if node.js is installed on windows
How to Determine if Node.js is Installed on Windows
September 18, 2023 - Node.js is essential for a variety of development tasks, and it’s crucial to ensure it’s properly installed on your Windows machine. Here are several methods to verify its installation: ... Open the Command Prompt. Type node -v and press Enter. ...
🌐
RisingStack
blog.risingstack.com › home › hírek, események › how to check node version
How to check Node version - RisingStack Engineering
May 29, 2024 - These commands will try to clean up any issues with your npm cache and install Node with permissions that may help resolve any installation issues. To only check your npm version, you can use the following command: ... NVM (Node Version Manager) is a bash script that allows you to manage multiple active versions of Node.js.
🌐
Quora
quora.com › How-do-I-check-the-version-of-Node-js-and-npm-installed-on-my-machine
How to check the version of Node.js and npm installed on my machine - Quora
Answer (1 of 14): Open the terminal & type below command Node [code]node -v ( short command ) node --version ( long command ) [/code]NPM [code]npm -v ( short command ) npm --version ( long command ) [/code]I see lot of softwares & packages follow ...
🌐
Squash
squash.io › how-to-check-nodejs-version-on-command-line
How To Check Node.Js Version On Command Line
Related Article: How to Fix “nvm command not found” with Node Version Manager · Node Package Manager (npm) is the default package manager for Node.js and is usually installed alongside Node.js. You can use the npm command to check the Node.js version as well.
🌐
MonoVM
monovm.com › 📚 tutorials 📚 › how to check node version? [check node js version]
How to Check Node Version? [Check Node JS Version]
January 31, 2024 - This command will promptly display the installed Node.js version. ... Running this command will show you the version of npm installed on your system. ... If you prefer to check the Node.js version from within a JavaScript file, you can use the following code snippet:
🌐
CodeForGeek
codeforgeek.com › home › how to check node version?
How to Check Node Version? | CodeForGeek
August 27, 2024 - You can see all installed Node JS versions by running the “nvm list” command in cmd. In short, we can check the Node.js version by running the command “node -v” inside the terminal.
🌐
Artoon Solutions
artoonsolutions.com › home › how to check node version rapidly | your quick guide
How to Check Node Version Quickly | Here's Your Guide
April 28, 2025 - To check Node js version via the command line, follow these steps: Open the terminal or command prompt on your system. Type node -v and hit Enter. The command line will display the version of Node.js installed on your system.
🌐
Orion InfoSolutions
orioninfosolutions.com › blog › how-to-check-node-version
How to Check Node Version In Node.js
August 13, 2024 - ... To install NVM into your system, you need to follow the instructions that are provided on the NVM GitHub page. ... Once NVM is installed, you can check your Node version by typing ‘nvm ls’ in the terminal.
🌐
Bacancy Technology
bacancytechnology.com › qanda › node › check-if-node-js-is-installed-on-system
How to Check If Node.js Is Installed on System
The easiest way to check if Node.js is installed is through the command line. Open Command Prompt (cmd) or PowerShell. Type the following command and press Enter: node -v · If Node.js is installed, it will return a version number, e.g., v18.17.1.
🌐
Quora
quora.com › How-do-I-verify-the-version-of-Node-js-in-Windows
How to verify the version of Node.js in Windows - Quora
Answer (1 of 4): Open the command prompt and just type node -v and hit enter. You will get the installed version of the node. And for NPM write npm -v You will get the npm ( Node package manager ) version. Happy coding hrs…
🌐
Fynd Academy
fynd.academy › blog › node-version-check
Node Version Check - Node.js Versions: Previous Releases, Check, Update
December 2, 2024 - Knowing your Node.js version helps you make informed decisions about updating your codebase or dependencies. To check your Node.js version, open a terminal or command prompt and type node -v or node --version.