Change node version linux

How to Update Node.js to Latest Version

Node.js is an open-source JavaScript runtime environment. Since Node.js has an active community of users, minor updates of the software come out every few weeks.

You may be using Node.js as a layer of the MEAN stack or in a different JS framework. Either way, make sure to update Node.js regularly to ensure system security.

There are several ways to install Node.js and NPM. Likewise, there are several ways to update your Node.js version, depending on the operating system running on your machine.

In this article, you will learn how to update to the latest Node.js version on Linux, Windows, and macOS.

tutorial on how to update Node.js to latest version

3 Ways to Update Node.js to Latest Version on Linux Systems

There are different ways to update Node.js if you are using a Linux-based system. Although using the Node Version Manager is the easiest and most recommended option, you can also update with the local package manager or by downloading the binary packages.

Option 1: Update Node.js with NVM (Node Version Manager)

The best way to upgrade Node.js is with NVM, a practical tool for managing multiple Node.js versions.

1. Start by updating the package repository with the command:

2. Install NVM using the curl command:

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

Note: If you don’t have curl , install the utility by running the command: sudo apt install curl .

Alternatively, you use wget and run the command:

wget -q0- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash

3. Close and reopen the terminal for system to recognize the changes or run the command:

5. Then, verify if you have successfully installed NVM:

6. Before upgrading Node.js, check which version you have running on the system:

7. Now you can check for newly available releases with:

see a list of all available Node.js versions

8. To install the latest version, use the nvm command with the specific Node.js version:

nvm install [version.number]

Option 2: Update Node.js with NPM (Node Package Manager)

As an alternative, you can use Node’s official package manager to update Node.js. NPM is a tool for installing and managing package dependencies.

Читайте также:  Epson wf m5799 драйвер linux

If you have Node on your system, you have NPM, as well. With the npm command, you can check running Node.js versions and install the latest release.

By adding the n module, you can interactively manage Node.js versions.

1. First, clear the npm cache:

clear npm cache

2. Install n, Node’s version manager:

3. With the n module installed, you can use it to:

Install the latest stable version:

Note: Some Ubuntu distros may respond with the command not found output after running the n command. To fix this issue run sudo -E env «PATH=$PATH» [command] . For example, to install the latest stable version, as in the example above, you would run sudo -E env «PATH=$PATH» n stable .

Install the latest release:

Install a specific version:

Option 3: Update Node.js with Binary Packages

Updating Node.js with binary packages is the least recommended option. However, if it is the only way you can upgrade to the latest Node.js version, follow the steps outlined below.

1. Navigate to Node’s official downloads page where you can find all available packages. There you can download the source code or pre-built installer for the LTS versions or the latest release.

2. You can either download the package from your browser or find the version number you need and add it to the wget command:

wget https://nodejs.org/dist/v14.17.0/node-v14.17.0-linux-x64.tar.xz

3. Next, install xz-utils used to extract the binary package:

sudo apt-get install xz-utils

4. Extract and install the package with the command:

sudo tar -C /usr/local --strip-components 1 -xJf node-v14.17.0-linux-x64.tar.xz

Update Node.js to Latest Version on Windows and macOS

Updating Node.js on Windows and macOS follows the same principles.

There are two simple ways to upgrade:

  • Download the latest Node.js release from its official download page and install the new Node.js release.
  • Install the n module and update Node.js inside the terminal window.

Option 1: Update Node.js on Windows and macOS with Installer

One way to update your Node.js is to go to its official download page and install the newest release. Bz doing so, the system should overwrite the older version with the updated one.

Читайте также:  Linux изменить имя домена

1. Navigate to the Node.js website and click on the latest stable version or the newest current release (with the latest features).

2. After deciding the version, click on the Windows or the macOS Installer, depending on the system you are using. The system downloads the package and stores it in the specified directory.

3. Once the download is complete, run the installer.

4. The Node.js Setup Wizard appears and guides you through the installation.

Node.js installation wizard

5. Accept the License Agreement by checking the box and click Next.

Node.js licensing agreement

6. Choose the destination folder where you want to install Node.js.

install latest Node.js on Windows

7. Node.js allows you to select how you want to install the Node features. Change the way the features are installed by clicking on the icons in the tree.

Custom Setup for Node.js

8. With that, the latest Node.js is ready to install. Click Install to confirm, wait until the installation completes, and click Finish.

9. Check the Node.js version with the command:

Note: Sometimes, the system fails to overwrite the older Node.js release and you may end up with two versions. If such problems occur, you may want to consider updating with NPM, outlined in the section below.

Option 2: Update Node.js on Windows and macOS with NPM

If you want to upgrade Node.js from the command line, use the n model within the npm command. The n feature allows you to interact with different Node.js versions.

1. Before updating the Node.js release, check which version you are currently using with:

2. Next, clear npm cache with the command:

3. Install n globally:

4. Now that you have n installed, you can use the module to install the latest stable release of Node.js:

Alternatively, you can install the Node.js release with the latest features:

Or, install a specific version number with:

The best part of open-source technology is its strong community of users constantly working on upgrading the software.

Node.js is a good example of such software as new versions come out regularly. Users can choose whether they want to work with the LTS (the long-term supported version) or the latest version with the newest features.

Читайте также:  Расширить диск linux centos

This article should have helped you update Node.js on any operating system.

Sofija Simic is an experienced Technical Writer. Alongside her educational background in teaching and writing, she has had a lifelong passion for information technology. She is committed to unscrambling confusing IT concepts and streamlining intricate software installations.

Node.js is an open-source cross-platform JavaScript (JS) runtime environment. It is used for building fast.

The MEAN stack is an open-source JavaScript (JS) framework used for developing robust web applications. It is.

Node Package Manager (npm) is Node’s official package manager, used for installing and managing packages.

Node.js is a software application that runs JavaScript code. It’s typically used for running scripts on the.

Источник

How to check and change the Nodejs version on Ubuntu?

I am using Ubuntu Linux. How can I check current nodejs version? I guess, I have 6 version, but I am not sure. And is there way to change it, because I need 4 version. Can some one give step by step commands?

You can use NVM (Node version management) to manage multiple active node.js versions. github.com/creationix/nvm

5 Answers 5

Open up the terminal and type node -v

To change your node version, I’d recommend installing nvm. Once installed, to switch versions it’s as simple as

You can check your current NodeJS version by using command node -v. And changing your version can be done by using node version manager. The easiest way to do that is by running this $ npm install -g n now you can change your current NodeJS version using n (version) e.g. n 4.0.0.

node -v npm install -g n n 4.0.0 

This does not change the active version. How do I change to the stable version, for instance. I tried:
# n latest
installing : node-v15.7.0
mkdir : /usr/local/n/versions/node/15.7.0
fetch : nodejs.org/dist/v15.7.0/node-v15.7.0-linux-x64.tar.xz
installed : v15.7.0 to /usr/local/bin/node
active : v10.13.0 at /opt/conda/bin/node
# n stable
installed : v14.15.4 to /usr/local/bin/node
active : v10.13.0 at /opt/conda/bin/node

Yes, this is annoying, what I ended up doing was removing node (askubuntu.com/questions/786015/…) and then you can either symlink /usr/local/bin/[node~npm] into /usr/bin or you can add /usr/local/bin to your path.

NOTE: When you run it, n will inform you that node might not report the correct version until you restart your CLI. So, be sure to do so

Источник

Оцените статью
Adblock
detector