@dim.iliev/process-utils-exec
v1.0.1
Published
Super small convenience package to call `exec` and return the response as a promise.
Downloads
1
Maintainers
Readme
process-utils-exec
A tiny utility function that executes a shell command and returns a promise with the output - stdout
or stderr
Install
# with yarn
yarn add @dim.iliev/process-utils-exec
# with npm
npm install @dim.iliev/process-utils-exec -S
How to use
Simply import the exec
function and run as promise
import { exec } from "@dim.iliev/process-utils-exec"
const output = await exec('echo "Hello World"')
console.log(output)
Notes
The command does not trim the output, you need to do it yourself.
console.log(output.trim())