# post-compile-webpack-plugin

> Run your code after compilation is done.

Latest version **0.1.2** (published 2018-03-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install post-compile-webpack-plugin
pnpm add post-compile-webpack-plugin
yarn add post-compile-webpack-plugin
bun add post-compile-webpack-plugin
```

## 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.1.2 |
| Published | 2018-03-20 |
| First published | 2016-12-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 18 |
| Author | EGOIST |
| Maintainers | rem |

## Links

- npm: https://www.npmjs.com/package/post-compile-webpack-plugin
- Repository: https://github.com/EGOIST/post-compile-webpack-plugin
- npm.io page: https://npm.io/package/post-compile-webpack-plugin

## Recent versions

- 0.1.2 (latest) — 2018-03-20
- 0.1.1 — 2017-01-07
- 0.1.0 — 2016-12-31

## README

# post-compile-webpack-plugin

[![NPM version](https://img.shields.io/npm/v/post-compile-webpack-plugin.svg?style=flat-square)](https://npmjs.com/package/post-compile-webpack-plugin) [![NPM downloads](https://img.shields.io/npm/dm/post-compile-webpack-plugin.svg?style=flat)](https://npmjs.com/package/post-compile-webpack-plugin) [![Build Status](https://img.shields.io/circleci/project/egoist/post-compile-webpack-plugin/master.svg?style=flat)](https://circleci.com/gh/egoist/post-compile-webpack-plugin) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat)](https://github.com/egoist/donate)

## Install

```bash
yarn add post-compile-webpack-plugin --dev
```

## Usage

For example, use this to log url after each time the compilation is done.

```js
// webpack.config.js
const PostCompile = require('post-compile-webpack-plugin')

module.exports = {
  plugins: [
    new PostCompile(() => {
      console.log('Your app is running at http://localhost:4000')
    })
  ]
}
```

## Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D


## Author

**post-compile-webpack-plugin** © [EGOIST](https://github.com/EGOIST), Released under the [MIT](./LICENSE) License.<br>
Authored and maintained by EGOIST with help from contributors ([list](https://github.com/EGOIST/post-compile-webpack-plugin/contributors)).

> [egoistian.com](https://egoistian.com) · GitHub [@EGOIST](https://github.com/EGOIST) · Twitter [@rem_rin_rin](https://twitter.com/rem_rin_rin)

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