# esbuild-notifier

> Build Notifier for esbuild env

Latest version **1.0.1** (published 2021-06-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install esbuild-notifier
pnpm add esbuild-notifier
yarn add esbuild-notifier
bun add esbuild-notifier
```

## 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.1 |
| Published | 2021-06-30 |
| First published | 2021-06-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Saurabh Nemade |
| Maintainers | saurabhnemade |

## Links

- npm: https://www.npmjs.com/package/esbuild-notifier
- npm.io page: https://npm.io/package/esbuild-notifier

## Recent versions

- 1.0.1 (latest) — 2021-06-30
- 1.0.0 — 2021-06-30

## README

# esbuild-notifier

Inspired by webpack-build-notifier(https://www.npmjs.com/package/webpack-build-notifier).

Stumbled upon this awsome build tool named `esbuild` (https://esbuild.github.io/) at 2 A.M. in morning and found that no one has yet created build notifier plugin for this. So starting this project to have a nice build notifier.

# Setup

```
npm install --save-dev esbuild-notifier
```

```diff
const esbuild = require('esbuild');
+ const esbuildBuildNotifier = require('esbuild-notifier');

esbuild.build({
  entryPoints: ['src/app.jsx'],
  bundle: true,
  outfile: 'build/bundle.js',
  watch: true,
+  plugins: [
+    esbuildBuildNotifier()
+  ]
}).catch(() => process.exit(1))

```

# License
MIT

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