Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 968 Bytes

File metadata and controls

26 lines (17 loc) · 968 Bytes

component-install

This repository is no longer maintained. If you want to maintain it, open an issue and I will transfer ownership to you and add you as a maintainer on npm so you can continue this project. It was very useful when I was using component for browser side package management but I'm now using browserify instead and I see no reason to look back.

Build Status Dependency Status

Simple programmatic, asynchronous installation of a component

Installation

$ npm install component-install

Usage

var install = require('component-install');
var dev = true;
install(join(__dirname, 'my-component'), dev, function (err) {
  if (err) throw err;
});

License

MIT