1.0.1 • Published 1 year ago

@dim.iliev/process-utils-exec v1.0.1

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
1 year ago

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())