Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How to install npm

# There are many ways to install npm
npm i
npm install
sudo apt install npm

# to install globally, just add a -g or --global after the install or i
npm i -g
npm install -g
sudo apt install -g npm

# The best way to install npm is to install node from the website 
# 'https://www.nodejs.org
# npm comes with the package, so nce you do this, npm is installed automatically

# To update npm, simply do 
npm install latest-version # To install locally,
npm install -g latest-version # To install globally

# Note that the below are the same thing
# -g => --globall
# -v => --version
# i => install
Comment

How to install npm

npm install 
#type this into your terminal when you have change to the correct directory
Comment

PREVIOUS NEXT
Code Example
Shell :: install docker-compose 
Shell :: how to format pendrive on ubuntu 
Shell :: Git create a new repository on the command line 
Shell :: remove homebrew tap 
Shell :: how to image an entire disk on linux 
Shell :: install kubectl windows 
Shell :: bash rename multiple files pattern 
Shell :: aws lightsail ssl installation 
Shell :: grep after match 
Shell :: update time in linux 
Shell :: concatenate strings bash 
Shell :: github desktop 
Shell :: my ip 
Shell :: influxdb version 
Shell :: install docker on windows server 2019 
Shell :: git basic commands 
Shell :: start docker image 
Shell :: split vim window 
Shell :: react bootstrap 
Shell :: connect terminal to server 
Shell :: command to start a system service 
Shell :: get until last match 
Shell :: git pull branch you are not on 
Shell :: how to show a tag in git 
Shell :: git get latest log output to file 
Shell :: mkdir command 
Shell :: ajouter tag github 
Shell :: How to change MAC Termianl Prompt 
Shell :: xargs ffmpeg multiples files 
Shell :: get symbols from library 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =