An open API service indexing awesome lists of open source software.

https://github.com/revolunet/ora-promise

Use ora to monitor your promises execution time
https://github.com/revolunet/ora-promise

cli nodejs promise

Last synced: 2 months ago
JSON representation

Use ora to monitor your promises execution time

Awesome Lists containing this project

README

          

# ora-promise

Use [ora](https://github.com/sindresorhus/ora) to monitor your promises execution time

Some 💅 for your CLI

![demo](./demo.gif)

## install

```sh
npm i ora-promise
```

## usage

```js

const spinner = require('ora-promise');

spinner('generating video...', getSomePromise).then(console.log).catch(console.log)

```

See [./example.js](./example.js)