How to install nvm npm
Thu Jul 18 2024
113 words · 1 minutes

How to install nvm npm


Table of Contents

Install rpm

Download and install nvm: Link to Download and install nvm:

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

Download and install Node.js: Link to Download and install Node.js:

nvm install 20

Verify the Node.js version: Link to Verify the Node.js version:

node -v # Should print “v20.18.1”. nvm current # Should print “v20.18.1”.

Verify npm version: Link to Verify npm version:

npm -v # Should print “10.8.2”.

Thanks for reading!

How to install nvm npm

Thu Jul 18 2024
113 words · 1 minutes