update all dependencies code example

Example 1: upgrade all packages in package.json

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

Example 2: how to update my package.json

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

//Then this:
npm update

Example 3: update node.js dependencies

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

Example 4: how to update version of dependencies reactjs

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

Example 5: update all dependencies with npm

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