npm-update-all

Update all npm packages in dependencies & devDependecies under package.json at once

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
npm-update-all
1.0.16 years ago9 years agoMinified + gzip package size for npm-update-all in KB

Readme

npm-update-all
Update all dependencies & devDependencies in package.json at once.
Global installation is recommended for cli usage.

Install (cli)

$ npm install npm-update-all -g

CLI Usage

//  Navigate to project root , where package.json is located & run.

  $ npm-update-all

Install (project)

$ npm install npm-update-all -D

Usage

// In your server.js/index.js , run following code.

var updateAll = require('npm-update-all');
var json = require('./package.json');


updateAll(json);