Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.01 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.01 KB

bower-npm-install

Build Status NPM version Dependency Status

It is a convenient tool to run npm install on every bower dependency.

Quickstart

  1. Install it npm -g install bower-npm-install
  2. cd to your project root with bower.json
  3. Run bower-npm-install and see the output

API usage

Example

var bowerNpmInstall = require('bower-npm-install');

bowerNpmInstall(/*paths, options, config*/)
    .on('log', function(data) {
        console.log(data);
    })
    .on('error', function(err) {
        console.error(err);
    })
    .on('end', function(installed) {
        console.log('Installed packages: ' + JSON.stringify(installed, null, 2));
    });