npmin

1.0.1 • Public • Published

npmin NPM version NPM downloads Build Status

npmin skips modules that are already installed.

Install

$ npm install --save npmin

Usage

const npmin = require('npmin')
 
const options = {verbose: true}
 
npmin(['express', 'co'], options)
  .then(result => {
    console.log(result.express)
    //=> success: 0
    console.log(result.co)
    //=> failed: 1
  })

API

npmin(input, [options])

input

Type: array

A list of modules you wanna install.

options

Type: object

The options to run npm install with, support all npm install options.

License

MIT © EGOIST

Readme

Keywords

Package Sidebar

Install

npm i npmin

Weekly Downloads

2

Version

1.0.1

License

MIT

Last publish

Collaborators

  • kchan