Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 647 Bytes

npm.md

File metadata and controls

32 lines (23 loc) · 647 Bytes

⭐ Npm installation

  • Install node js on ubunutu

Adding Nodejs PPA

# install the current release
# currently nodejs 12 is available at time of writting the docs

$ sudo apt-get install curl python-software-properties
$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
# install the LTS release
# Node.js 10.15.3 is the LTS release available at time of writting the docs

$ sudo apt-get install curl python-software-properties
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

Install nodejs On Ubuntu

$ sudo apt-get install nodejs

Check version

$ nodejs -v