DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Error Handling Inside Kumologica Subflow
  • Stop Writing Dialect-Specific SQL: A Unified Query Builder for Node.js
  • Lambda-Driven API Design: Building Composable Node.js Endpoints With Functional Primitives
  • DNS Propagation Doesn't Have to Take 24 Hours

Trending

  • The Developer's Guide to Context-Aware AI: When Your Code Documentation Becomes Intelligent
  • Engineering LLMOps: Building Robust CI/CD Pipelines for LLM Applications on Google Cloud
  • Retesting Best Practices for Agile Teams: A Quick Guide to Bug Fix Verification
  • Why Your DLP Policies Fall Short the Moment AI Agents Enter the Picture
  1. DZone
  2. Coding
  3. JavaScript
  4. How To Change Node.JS Version

How To Change Node.JS Version

Plag check clear. Let's look at how to change Node.JS version using NPM, and how to update old projects.

By 
Johnny Simpson user avatar
Johnny Simpson
·
Mar. 20, 22 · Tutorial
Likes (3)
Comment
Save
Tweet
Share
4.6K Views

Join the DZone community and get the full member experience.

Join For Free

In this quick guide, we'll be looking at the easiest way to change the Node.JS version using nvm.

Using NVM To Change node.JS Version

First, you will need to install nvm, which stands for node version management. To install nvm, you can do it by running the following script:

Plain Text
 
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

Alternatively, you can install it with wget:

Plain Text
 
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

After it is installed, you have to run the following command to start using it immediately - simply copy and paste this into your terminal and press enter to get going:

Plain Text
 
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

To test this has worked, write nvm into the terminal, and press enter. You should be greeted with the nvm help functions.

Changing Node.JS Version With NVM

To change Node.JS versions, we have to first download the version we want. Make sure you have nvm installed first. If you don't know the version you want to install, type nvm ls-remote to get a full list of all installable Node.JS versions.

Next, when you have selected the version you want to install, use nvm install to install it. The below code will install Node.JS v17.0.1:

Plain Text
 
nvm install 17.0.1

If you simply want to install the latest stable version of Node.JS, you can use the following command:

Plain Text
 
nvm install node

You can also use nvm install --lts instead!

Once the installation has finished, use the nvm use command to ensure the correct version is being used. The below code will ensure v17.0.1 is being used:

Plain Text
 
nvm use 17.0.1

As before, nvm use node or nvm use --lts will use the latest stable version. Now you have installed and changed your Node.JS version using nvm.

Upgrading an Old Project to a New Node.JS Version

If you have been stuck on an old version of Node.JS, your project may be dependent on old versions of packages. To fully upgrade your old package.json after changing the Node.JS version, you can use the npm package, npm-check-updates.

To install npm-check-updates, use the cd to move into the directory you want to upgrade. Then run the following command:

Plain Text
 
npx npm-check-updates

You will be asked to install npm-check-updates - type 'y' and then press enter.

After the installation is complete, you will be given a list of possible upgrades for your package.json. If you wish to proceed, run ncu -u to fully upgrade your package.json.

Now you will have changed the Node.JS version, and fully upgraded your old project with npm-check-updates.

Node.js Plain text

Published at DZone with permission of Johnny Simpson. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Error Handling Inside Kumologica Subflow
  • Stop Writing Dialect-Specific SQL: A Unified Query Builder for Node.js
  • Lambda-Driven API Design: Building Composable Node.js Endpoints With Functional Primitives
  • DNS Propagation Doesn't Have to Take 24 Hours

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook