# eek

> mix in an EventEmitter to your constructor

Latest version **0.1.0** (published 2013-09-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install eek
pnpm add eek
yarn add eek
bun add eek
```

## 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.0 |
| Published | 2013-09-20 |
| First published | 2013-09-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | jden |
| Maintainers | jden |
| Keywords | event, emitter, constructor |

## Links

- npm: https://www.npmjs.com/package/eek
- Repository: git@github.com:jden/eek
- Issues: https://github.com/jden/eek/issues
- npm.io page: https://npm.io/package/eek

## Dependencies (1)

- [chai-interface](https://npm.io/package/chai-interface.md) ~1.1.0

## 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

- 0.1.0 (latest) — 2013-09-20

## README

# eek
mix in an EventEmitter to your constructor

## usage
```js
var eek = require('eek')

var foo = eek(function foo() {
  this.isAFoo = true
})

var bar = new foo()
bar instanceof foo
// => true

bar.on('foo', function (val) {
  // this is called
  // val => 23
})
bar.emit('foo', 23)
```


## installation

    $ npm install eek


## running the tests

From package root:

    $ npm install
    $ npm test


## contributors

- jden <jason@denizac.org>


## license

MIT. (c) MMXIII jden <jason@denizac.org>. See LICENSE.md

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