# actions-exec-wrapper

> A wrapper around the @actions/exec module which promisifies the console output of a command

Latest version **1.0.3** (published 2022-12-26) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install actions-exec-wrapper
pnpm add actions-exec-wrapper
yarn add actions-exec-wrapper
bun add actions-exec-wrapper
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2022-12-26 |
| First published | 2022-06-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | SLIIT FOSS |
| Maintainers | sliit.foss |
| Keywords | @actions/exec, actions-exec-wrapper, console-output |

## Links

- npm: https://www.npmjs.com/package/actions-exec-wrapper
- Repository: https://github.com/sliit-foss/actions-exec-wrapper
- Homepage: https://github.com/sliit-foss/actions-exec-wrapper#readme
- Issues: https://github.com/sliit-foss/actions-exec-wrapper/issues
- npm.io page: https://npm.io/package/actions-exec-wrapper

## Dependencies (1)

- [@actions/exec](https://npm.io/package/@actions/exec.md) ^1.1.1

## Recent versions

- 1.0.3 (latest) — 2022-12-26
- 1.0.2 — 2022-11-06
- 1.0.1 — 2022-06-26
- 1.0.0 — 2022-06-25

## README

# actions-exec-wrapper

A wrapper around the [@actions/exec](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiZ6tHV0Mr4AhXhTGwGHUPnBJ0QFnoECAoQAQ&url=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2F%40actions%2Fexec&usg=AOvVaw26dWB7pmcPpZtcQ8teo8Qe) module which promisifies the console output of a command

---

## Installation

```js
# using npm
npm install actions-exec-wrapper

# using yarn
yarn add actions-exec-wrapper
```
## Usage

```js
# using require
const exec = require("actions-exec-wrapper").default;

# using import
import exec from "actions-exec-wrapper";
```

## Example<br/>

```js
exec('npm --version').then(result => {
  console.log(result);
}).catch(error => {
  console.log(error);
})
```

---
_Source: https://npm.io/package/actions-exec-wrapper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
