@develephant/spawnp
v1.0.0
Published
A simple Promise wrapper around child_process.spawn
Downloads
6
Maintainers
Readme
spawnp
A simple Async/Promise wrapper around child_process.spawn
Install
npm i @develephant/spawnp --save
Usage
const spawnp = require('@develephant/spawnp')
Example
async function run() {
await spawnp('browserify', ['index.js', '-o', 'bundle.js'], process.cwd())
}