@nielse63/exec
Version:
Run child process asynchronously
30 lines (19 loc) • 620 B
Markdown
# `@nielse63/exec`
> Run child process asynchronously
  
## Installation
```bash
npm install --save @nielse63/exec
```
## Usage
```js
import exec from '@nielse63/exec';
const output = await exec('echo "howdy!"');
// "howdy!"
```
Or CommonJS:
```js
const exec = require('@nielse63/exec');
const output = await exec('echo "howdy!"');
// "howdy!"
```