Install Node Js and NPM Ubuntu 18.04/20.04/22.04 Command Line

Install Node Js and NPM Ubuntu 18.04/20.04/22.04 Command Line

In linux ubuntu command line, Run sudo apt update && sudo apt install nodejs npm to install it on machine.

How to Install Node Js and NPM Ubuntu 18.04/20.04/22.04

Steps to install js and npm in ubuntu 18.04/20.04/22.04 using command line or terminal:

Step 1: Update apt packages

before installing the Node js & NPM on Ubuntu. First update the apt package:

sudo apt-get update

sudo apt-get upgrade 

Step 2: Add Node.js PPA

PPA (Personal Package Archives) is Python software libraries. Before install node js & npm on ubuntu, first install PPA in our ubuntu system. Using this below commands.

sudo apt-get install python-software-properties

curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -

Step 3: Install Node.js and NPM On Ubuntu

After adding PPAs in our system. we need to run the below command for installing node js & npm on Ubuntu.

For Install Node js on Ubuntu :

sudo apt-get install nodejs

For Install NPM on Ubuntu

sudo apt-get install npm

Step 4: Test Version

After completing the installation process. We need to check the version.

Check the installed Node js version :

nodejs  -v

Check the Installed NPM version :

npm -v

Conclusion

We have successfully installed Node js & NPM on Ubuntu 18.04/20.04/22.04. You are now ready to start deploying your applications and use Node js and NPM.

Recommended Node JS Tutorials

If you have any questions or thoughts to share, use the comment form below to reach us.

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

One reply to Install Node Js and NPM Ubuntu 18.04/20.04/22.04 Command Line

  1. Well-written Article! Your article provides step-by-step information so that was easy to understand for beginners. so, thank you for this article and you have any tips and tricks about node.js then keep sharing.

Leave a Reply

Your email address will not be published. Required fields are marked *