Socket
Socket
Sign inDemoInstall

bower-npm-install

Package Overview
Dependencies
242
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bower-npm-install

[![Build Status](https://secure.travis-ci.org/arikon/bower-npm-install.png?branch=master)](http://travis-ci.org/arikon/bower-npm-install) [![NPM version](https://badge.fury.io/js/bower-npm-install.png)](http://badge.fury.io/js/bower-npm-install) [![Depend


Version published
Maintainers
4
Install size
5.90 MB
Created

Readme

Source

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));
    });

FAQs

Last updated on 31 Mar 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc