1.0.0 • Published 9 years ago

installing v1.0.0

Weekly downloads
3
License
none
Repository
-
Last release
9 years ago

installing

A module for installing node modules programmatically based on your package.json

Usage

Firstly, install via NPM:

npm install --save installing

go( callback )

Install's all of the modules inside your package.json file

installing.go(function(data) {

  console.log(data);

});

run( command, callback )

Runs a command and outputs the data received

installing.run("npm install --save request", function(data) {

  console.log(data);

});