DEV Community

Discussion on: npm commands every developer should know

Collapse
 
togakangaroo profile image
George Mauer

Possibly the most important command is ci
It's more correct to say that npm install, adds and upgrades dependencies. Npm ci tattooed what is in your lock file, which is what you want almost all other times.

Also very much worth knowing: the npx command

Collapse
 
victorocna profile image
Victor Ocnarescu

Was browsing the comment section for npm ci. It really is one the most important commands.