# cli-progress-webpack-plugin

> A cli progress bar for Webpack.

Latest version **1.0.2** (published 2020-11-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install cli-progress-webpack-plugin
pnpm add cli-progress-webpack-plugin
yarn add cli-progress-webpack-plugin
bun add cli-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.2 |
| Published | 2020-11-28 |
| First published | 2020-01-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Jesse Feng |
| Maintainers | fengxinming |
| Keywords | webpack, plugin, cli-simple-progress |

## Links

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

## Dependencies (1)

- [cli-simple-progress](https://npm.io/package/cli-simple-progress.md) ^2.0.0

## Alternatives

- [raw-loader](https://npm.io/package/raw-loader.md) — 4.3M weekly downloads
- [plop](https://npm.io/package/plop.md) — 1.4M weekly downloads
- [webpack-deadcode-plugin](https://npm.io/package/webpack-deadcode-plugin.md) — 80.3K weekly downloads
- [@storybook/preact-vite](https://npm.io/package/@storybook/preact-vite.md) — 54.2K weekly downloads
- [vite-plugin-transform](https://npm.io/package/vite-plugin-transform.md) — 2.4K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2020-11-28
- 1.0.1 — 2020-01-18
- 1.0.0 — 2020-01-01

## README

# cli-progress-webpack-plugin

[![npm package](https://nodei.co/npm/cli-progress-webpack-plugin.png?downloads=true&downloadRank=true&stars=true)](https://www.npmjs.com/package/cli-progress-webpack-plugin)

> A cli progress bar for Webpack.

[![NPM version](https://img.shields.io/npm/v/cli-progress-webpack-plugin.svg?style=flat)](https://npmjs.org/package/cli-progress-webpack-plugin)
[![NPM Downloads](https://img.shields.io/npm/dm/cli-progress-webpack-plugin.svg?style=flat)](https://npmjs.org/package/cli-progress-webpack-plugin)

## Installation

```bash
$ npm install cli-progress-webpack-plugin --save-dev
```

## Usage

**First, import the plugin into your Webpack configuration file:**

```js
const ProgressPlugin = require('cli-progress-webpack-plugin');
```

**Then, instantiate it within the list of plugins:**

```js
{
  plugins: [
    new ProgressPlugin(),
    // new ProgressPlugin({
    //   ...options
    //   profileLevel: 'info',
    //   progress: {},
    // })
  ]
}
```

## Options

* `profileLevel` (profileLevel = 'info') log level (`'verbose'`/`'log'`/`'info'`/`'warn'`/`'error'`/`'none'`)

* `progress` [pass `cli-simple-progress` options](https://github.com/fengxinming/cli-simple-progress#options)

* `...rest` [pass `progress-plugin` options](https://webpack.docschina.org/plugins/progress-plugin/)

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