@nielse63/exec
v1.1.8
Published
Run child process asynchronously
Downloads
6
Readme
@nielse63/exec
Run child process asynchronously
Installation
npm install --save @nielse63/exec
Usage
import exec from '@nielse63/exec';
const output = await exec('echo "howdy!"');
// "howdy!"
Or CommonJS:
const exec = require('@nielse63/exec');
const output = await exec('echo "howdy!"');
// "howdy!"