Milan jotva
Milan jotva

Reputation: 143

how to install older version of node in ubuntu?

I want to install node v=14.8.0 and npm v=6.14.8 for my project. How can install it instead of the latest version?

Upvotes: 3

Views: 3731

Answers (1)

Rashed Rahat
Rashed Rahat

Reputation: 2475

I'd highly recommend you to install Node.js and npm on Ubuntu using nvm.

Node Version Manager nvm (Node Version Manager) is a tool that allows you to download and install Node. js. Check if you have it installed via nvm --version . npm (Node Package Manager) is a tool that allows you to install javascript packages

Please visit and follow the steps from this link: How to Install Node.js and npm on Ubuntu to achieve your goal.

Upvotes: 3

Related Questions