# event.min.js

> Event Emitter

Latest version **10.0.0-1** (published 2019-12-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install event.min.js
pnpm add event.min.js
yarn add event.min.js
bun add event.min.js
```

## 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 | 10.0.0-1 |
| Published | 2019-12-27 |
| First published | 2018-10-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Seindi Barus |
| Maintainers | seindi |
| Keywords | event, emitter |

## Links

- npm: https://www.npmjs.com/package/event.min.js
- Repository: https://github.com/seindi/event.min.js
- Homepage: https://github.com/seindi/event.min.js#readme
- Issues: https://github.com/seindi/event.min.js/issues
- npm.io page: https://npm.io/package/event.min.js

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 10.0.0-1 (latest) — 2019-12-27
- 10.0.0-0 — 2019-12-26
- 10.0.2 — 2019-12-16
- 10.0.1 — 2019-12-16
- 10.0.0 — 2019-12-15
- 1.2.3-0 — 2018-12-28
- 0.0.1 — 2018-11-06
- 0.0.0-rc — 2018-11-02
- 0.0.0-2 — 2018-10-31

## README

# event.min.js

```js
const event = require ("event.min.js")

var test = new event
test.on ("x", function () { console.log ("x-1") })
test.on ("x", function () { console.log ("x-2") })
console.log (test.emit ("x"))
```

```js
const event = require ("event.min.js")

var test = new event
test.on ("x", function () { return "x-1" })
test.on ("x", function () { console.log ("x-2") })
console.log (test.emit ("x"))
```

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