Try

nodejs --version

(at least on my system the binary is called nodejs)

Answer from Sergey on askubuntu.com
🌐
BlueVPS
bluevps.com › blog › how to check node version [step-by-step guide]
How To Check Node Version [Step-By-Step Guide] - Blog - BlueVPS
You can check the Node version installed on your system by running the following command: ... It will display the Node version on your command-line window running on your system. If you don’t have Node.js installed on your Linux system, don’t worry!
People also ask

Can I check Node.js versions for different projects on my system?
Yes, Node Version Manager (NVM) allows you to manage and switch between different Node.js versions on a per-project basis, making it easier to work on projects with varying version requirements.
🌐
monovm.com
monovm.com › 📚 tutorials 📚 › how to check node version? [check node js version]
How to Check Node Version? [Check Node JS Version]
How does the Node.js version affect NPM packages?
Some NPM packages require specific Node.js versions. Using the wrong version can lead to compatibility issues.
🌐
orioninfosolutions.com
orioninfosolutions.com › blog › how-to-check-node-version
How to Check Node Version In Node.js
Why is it important to check my Node.js version regularly?
Regularly checking your Node.js version ensures you're aware of the specific version you're using. This is crucial for maintaining compatibility with your projects, benefiting from the latest features, and addressing potential issues.
🌐
monovm.com
monovm.com › 📚 tutorials 📚 › how to check node version? [check node js version]
How to Check Node Version? [Check Node JS Version]
🌐
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 - Project dependencies sometimes require particular Node.js versions, and if a mismatch takes place, runtime errors may be triggered. Look into the package.json file of the project for the engines field to check for supported versions.
🌐
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 - In most Linux distributions, you can access the terminal by searching for "Terminal" in your applications or using a keyboard shortcut like Ctrl+Alt+T. Check the Installed Node.js Version: In the terminal, simply type the following command and ...
🌐
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 ...
🌐
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.
Find elsewhere
🌐
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 - Linux: Open a terminal emulator. Type node -v and press Enter. The current Node.js version will be displayed. Each of these methods is quick and effective for checking which Node.js version you�re currently running across various platforms.
🌐
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 the above pattern to get version number. It's s...
🌐
Orion InfoSolutions
orioninfosolutions.com › blog › how-to-check-node-version
How to Check Node Version In Node.js
August 13, 2024 - Where do you find them? Just go to github.com/nodejs/node/releases and click on "Tags". There are a few ways to check what version of Node you are using. You can do this using a simple command line prompt, npm or nvm.
🌐
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.
🌐
npm
npmjs.com › package › check-node-version
check-node-version - npm
--volta Use the versions pinned by Volta in the package.json -p, --print Print installed versions. -h, --help Print this message. Check for node 6, but have 8.2.1 installed. $ check-node-version --node 6 node: 8.2.1 Error: Wanted node version 6 (>=6.0.0 <7.0.0) To install node, run `nvm install 6` or see https://nodejs.org/ $ echo $? 1
      » npm install check-node-version
    
Published   Nov 03, 2021
Version   4.2.1
Author   Parsha Pourkhomami
🌐
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 - From using the command line interface to leveraging Node.js REPL, inspecting package.json, and even utilizing popular IDEs and editors, you’ll have a range of options to verify your Node installation. Additionally, we’ll introduce you to the powerful Node Version Manager (NVM) tool, which enables you to install Node and NPM and manage multiple Node versions effortlessly. We’ll also show you how to check both the Node.js and NPM versions simultaneously, ensuring your environment is up to date.
🌐
bodHOST
bodhost.com › tutorial › how to check and install the current node.js version
Check & Install the Latest Node.js Version Explained
September 24, 2025 - Run the installer and follow the setup wizard. After installation, open Command Prompt and verify the version: node -v ... Go to https://nodejs.org and download the macOS installer. Open the downloaded .pkg file and follow the installation steps.
🌐
Rootstack
rootstack.com › en › blog › how-check-version-nodejs-being-used
How to check the version of Node.js being used | Rootstack
It also contains npm, a powerful package manager that gives you access to a wide library of open source packages and modules that can be easily incorporated into Node.js applications. To check the version of Node.js installed on your computer, you can use the following command in terminal or command prompt:
🌐
Quora
quora.com › How-do-I-check-the-version-of-node-js-in-my-machine
How to check the version of node.js in my machine - Quora
Answer (1 of 11): If you're on a Macintosh, simply open up "Utilities" > "Terminal" and type: node -v It will return the version of node you are using.
🌐
Educative
educative.io › answers › how-to-check-versions-of-node-and-express-using-cmd
How to check versions of Node and Express using cmd
Checking the version of Node.js installed on our system is straightforward. We can use the node command followed by the -v or --version flag. This command works across different operating systems, including Windows, macOS, and Linux.
🌐
Mobcoder
mobcoder.com › blog › check-nodejs-version
How to Check Node.js Version - Check Node Version
October 6, 2022 - Here, you’ll learn how to determine the version of node installed on your system, as well as how to install it on Linux, Windows, or Mac. Ubuntu is being considered as a Linux distribution in this case. You can simply locate Node.js inside Ubuntu’s repository and install it using the provided ...
Address   PO Box 28922, 98118, Seattle,
🌐
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.