# multi-progress

> Multiple progress bars based on the "progress" package

Latest version **4.0.0** (published 2020-10-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install multi-progress
pnpm add multi-progress
yarn add multi-progress
bun add multi-progress
```

## Health

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

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

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2020-10-15 |
| First published | 2015-08-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/multi-progress) |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 38 |
| Author | PitaJ |
| Maintainers | pitaj |
| Keywords | multi, multiple, progress, bar |

## Links

- npm: https://www.npmjs.com/package/multi-progress
- Repository: https://github.com/pitaj/multi-progress
- Issues: https://github.com/pitaj/multi-progress/issues
- npm.io page: https://npm.io/package/multi-progress

## Alternatives

- [@sentry/react-native](https://npm.io/package/@sentry/react-native.md) — 2.6M weekly downloads
- [@ardatan/aggregate-error](https://npm.io/package/@ardatan/aggregate-error.md) — 708.1K weekly downloads
- [custom-error-generator](https://npm.io/package/custom-error-generator.md) — 2.0K weekly downloads
- [@technik-sde/prosemirror-recreate-transform](https://npm.io/package/@technik-sde/prosemirror-recreate-transform.md) — 1.5K weekly downloads
- [@suchipi/error-utils](https://npm.io/package/@suchipi/error-utils.md) — 78 weekly downloads

## Recent versions

- 4.0.0 (latest) — 2020-10-15
- 3.0.0 — 2020-06-09
- 2.0.0 — 2016-06-26
- 1.0.0 — 2015-08-28

## README

# multi-progress

This module adds a layer on top of the API of [progress](https://github.com/tj/node-progress) that allows for multiple progress bars.

### Usage

Install with npm: `npm install multi-progress`

`multi-progress@4` requires `progress@2` as a peer dependency.
If you don't already have `progress@2` as a dependency, add it like so: `npm install progress@2`.

```js
// require the library
var Multiprogress = require('multi-progress');

// spawn an instance with the optional stream to write to
var multi = new Multiprogress(process.stderr);

// create a progress bar
var bar = multi.newBar('  downloading [:bar] :percent :etas', {
  complete: '=',
  incomplete: ' ',
  width: 30,
  total: size
});

// `bar` is an instance of ProgressBar
// Use the progressbar API with it
```

More detailed usage examples are available in the following projects:

- [rslashimg](https://github.com/pitaj/rslashimg/blob/master/library.js#L14-L58)

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