# webpack-stats-progress

> A webpack plugin to get progess of build and provide better stats of output files

Latest version **0.0.4** (published 2020-05-22) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2020-05-22 |
| First published | 2020-05-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 32.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Abhishek Saha |
| Maintainers | ajaxtown |
| Keywords | webpack, typescript, plugin, progress, stats, bar |

## Links

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

## Dependencies (4)

- [filesize](https://npm.io/package/filesize.md) ^6.1.0
- [progress](https://npm.io/package/progress.md) ^2.0.3
- [gzip-size](https://npm.io/package/gzip-size.md) ^5.1.1
- [recursive-readdir](https://npm.io/package/recursive-readdir.md) ^2.2.2

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.0.4 (latest) — 2020-05-22
- 0.0.3 — 2020-05-22
- 0.0.2 — 2020-05-22
- 0.0.1 — 2020-05-22

## README

This plugin is intended to provide cleaner output of webpack build. It also displays a progress bar while the build is running.

<img width="400" src="./screenshot.png">

### Progress bar

The plugin also comes with a progress bar

<img width="400" src="./screenshot2.png">

### Usage

In th webpack config file, add this plugin and make sure to turn off the stats

```js
const WebpackStatsProgress = require("webpack-stats-progress");

module.exports = {
  mode: "production",
  stats: "none",
  plugins: [
    new WebpackStatsProgress({ buildFolder: path.join(__dirname, "dist") }),
  ],
};
```

Check the example in the `example` folder.

### Credits:

- <a href="https://github.com/facebook/create-react-app">React Create App</a>
- <a href="https://github.com/visionmedia/node-progress">Node Progress</a>

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