# progress-webpack-plugin

> progress webpack plugin

Latest version **1.0.16** (published 2022-04-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install progress-webpack-plugin
pnpm add progress-webpack-plugin
yarn add progress-webpack-plugin
bun add progress-webpack-plugin
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.16 |
| Published | 2022-04-04 |
| First published | 2017-09-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 10.13.0 |
| Dependencies | 3 |
| Unpacked size | 7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | alichen |
| Maintainers | alichen |
| Keywords | progress |

## Links

- npm: https://www.npmjs.com/package/progress-webpack-plugin
- Repository: https://github.com/ali322/progress-webpack-plugin
- Homepage: https://github.com/ali322/progress-webpack-plugin#readme
- Issues: https://github.com/ali322/progress-webpack-plugin/issues
- npm.io page: https://npm.io/package/progress-webpack-plugin

## Dependencies (3)

- [chalk](https://npm.io/package/chalk.md) ^2.1.0
- [figures](https://npm.io/package/figures.md) ^2.0.0
- [log-update](https://npm.io/package/log-update.md) ^2.3.0

## Recent versions

- 1.0.16 (latest) — 2022-04-04
- 1.0.15 — 2022-04-02
- 1.0.13 — 2022-04-02
- 1.0.12 — 2021-01-23
- 1.0.11 — 2020-11-09
- 1.0.10 — 2020-11-09
- 1.0.9 — 2020-11-09
- 1.0.8 — 2020-10-29
- 1.0.7 — 2020-10-29
- 1.0.6 — 2020-10-29
- 1.0.5 — 2020-10-28
- 1.0.4 — 2020-10-28
- 1.0.3 — 2020-10-28
- 1.0.2 — 2020-10-22
- 1.0.1 — 2020-10-22
- … 22 more at https://npm.io/package/progress-webpack-plugin/versions

## README

progress-webpack-plugin  [![npm version](https://badge.fury.io/js/progress-webpack-plugin.svg)](https://badge.fury.io/js/progress-webpack-plugin)
===
[![NPM](https://nodei.co/npm/progress-webpack-plugin.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/progress-webpack-plugin/)

inspired by [progress-bar-webpack-plugin](https://github.com/clessg/progress-bar-webpack-plugin),simple Webpack plugin that display nice progress when build

Install
===

```javascript
npm install progress-webpack-plugin --save--dev
```

Usage
===

add plugin in your webpack.config.js

```javascript
var ProgressPlugin = require('progress-webpack-plugin')

module.exports = {
    ...
    plugins:[
        new ProgressPlugin(true)
    ]
}
```

Plugin Options
===

- **minimal**: enable minimal mode or not,default value is false
- **identifier**: identifier of webpack bundle
- **onStart**: callback function when webpack bundler started
- **onFinish**: callback function when webpack bundler finished
- **onProgress**: callback function when webpack bundler running
- **clear**: whether clear console when webpack bundler finished


## License

[MIT License](http://en.wikipedia.org/wiki/MIT_License)

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