pice
v1.0.0
Published
npm package that lets you run console commands and install other packages directly from your code
Readme
pice
npm package that lets you run console commands and install other packages directly from your code
- open source
- easy to use
- sync and async support
npm install picenpm install paishee/piceconst pice = require('pice');
// normal install may cause code to hang
let cmd = pice.install("@stews/soup", { version: "1.1.22", dev: true });
// you can use then to get the installed package automatically
cmd.then( (Soup) => {
console.log(Soup);
});
console.log(cmd)PiceCommand {
str: 'npm install @stews/[email protected] --save-dev',
pkg: '@stews/soup',
argsList: [Object],
args: [Object],
async: false,
__listeners: [Object],
__executor: [Buffer]
}
[class Soup]