npm update all packages

95

npm update all packages -

npm install -g npm-check-updates
ncu -u
npm update
npm install

upgrade all packages in package.json -

npm install -g npm-check-updates
ncu -u
npm install

use npm to update packages to latest version -

npm i -g npm-check-updates
ncu -u
npm install

how to update my package.json -

npm install -g npm-check-updates
/after install run following:
ncu -u

//Then this:
npm update

how to update dev dependencies npm -

npm update --save-dev

// Alternatively, the same command to save time
npm update -D

Comments

Submit
0 Comments