JSPM

n-install-missing

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q19570F
  • License MIT

Given a list of node versions, install any not currently installed using n

Package Exports

  • n-install-missing

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (n-install-missing) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status downloads npm Code Climate Test Coverage dependencies

n-install-missing

Given a list of node versions, install any not currently installed using n.

Installation

npm install --save n-install-missing

Summary

n-install-missing exports a function that takes an array of node versions and, using n, installs any that aren't currently installed.

var install = require('n-install-missing');
install(['4.0.0', '5.0.0'], function(err) {

});

By default, there is logging when installing each version, but you can turn this off by passing the quiet option.

var install = require('n-install-missing');
install(['4.0.0', '5.0.0'], { quiet: true }, function(err) {

});

Contributing

Please see the contribution guidelines.