1.0.0 • Published 1 year ago
pice v1.0.0
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 pice
npm install paishee/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)
</td>
<td>
```js
PiceCommand {
str: 'npm install @stews/soup@1.1.22 --save-dev',
pkg: '@stews/soup',
argsList: [Object],
args: [Object],
async: false,
__listeners: [Object],
__executor: [Buffer]
}
[class Soup]
1.0.0
1 year ago