Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/develephant/spawnp
A simple Async/Promise wrapper around child_process.spawn
https://github.com/develephant/spawnp
async await es2017 node process promise spawn
Last synced: about 1 month ago
JSON representation
A simple Async/Promise wrapper around child_process.spawn
- Host: GitHub
- URL: https://github.com/develephant/spawnp
- Owner: develephant
- License: other
- Created: 2017-03-23T18:25:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T18:25:36.000Z (almost 8 years ago)
- Last Synced: 2024-12-15T14:46:43.810Z (about 2 months ago)
- Topics: async, await, es2017, node, process, promise, spawn
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# `spawnp`
### A simple Async/Promise wrapper around `child_process.spawn`
## Install
```
npm i @develephant/spawnp --save
```## Usage
```js
const spawnp = require('@develephant/spawnp')
```## Example
```js
async function run() {
await spawnp('browserify', ['index.js', '-o', 'bundle.js'], process.cwd())
}
```---
#### `spawnp` ⋆ © 2017 develephant ⋆ MIT license