# promise-finally

> Simple wrapper to run promise "finally" logic

Latest version **3.0.1** (published 2019-11-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install promise-finally
pnpm add promise-finally
yarn add promise-finally
bun add promise-finally
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.1 |
| Published | 2019-11-06 |
| First published | 2015-10-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Blake Embrey |
| Maintainers | blakeembrey |
| Keywords | promise, finally, done, always, complete, cleanup |

## Links

- npm: https://www.npmjs.com/package/promise-finally
- Repository: https://github.com/blakeembrey/promise-finally
- Issues: https://github.com/blakeembrey/promise-finally/issues
- npm.io page: https://npm.io/package/promise-finally

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 3.0.1 (latest) — 2019-11-06
- 3.0.0 — 2016-12-18
- 2.2.1 — 2016-06-20
- 2.2.0 — 2016-05-13
- 2.1.0 — 2016-02-03
- 2.0.1 — 2015-11-01
- 2.0.0 — 2015-11-01
- 1.0.0 — 2015-10-04

## README

# Promise Finally

[![NPM version](https://img.shields.io/npm/v/promise-finally.svg?style=flat)](https://npmjs.org/package/promise-finally)
[![NPM downloads](https://img.shields.io/npm/dm/promise-finally.svg?style=flat)](https://npmjs.org/package/promise-finally)
[![Build status](https://img.shields.io/travis/blakeembrey/promise-finally.svg?style=flat)](https://travis-ci.org/blakeembrey/promise-finally)
[![Test coverage](https://img.shields.io/coveralls/blakeembrey/promise-finally.svg?style=flat)](https://coveralls.io/r/blakeembrey/promise-finally?branch=master)

> Simple wrapper to run promise "finally" logic.

## Installation

```
npm install promise-finally --save
```

## Usage

```js
import promiseFinally from 'promise-finally'

const p = Promise.resolve('something')

promiseFinally(p, () => ...)
```

## License

MIT

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