# classical-eventemitter

> A wrapper for the NodeJS event manager using the classical OO style.

Latest version **1.0.0** (published 2012-08-29) · 0 weekly downloads

## Install

```sh
npm install classical-eventemitter
pnpm add classical-eventemitter
yarn add classical-eventemitter
bun add classical-eventemitter
```

## 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.0 |
| Published | 2012-08-29 |
| First published | 2012-08-29 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Kevin Kragenbrink |
| Maintainers | kkragenbrink |
| Keywords | class, inheritance, wrapper, events |

## Links

- npm: https://www.npmjs.com/package/classical-eventemitter
- Repository: https://github.com/Writh/classical
- npm.io page: https://npm.io/package/classical-eventemitter

## Dependencies (1)

- [classical](https://npm.io/package/classical.md) 1.2.x

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

- 1.0.0 (latest) — 2012-08-29

## README

# Classical
A wrapper for the NodeJS event manager using the classical OO style.

# Documentation
## Extending the Event Manager
```javascript
var Server = EventManager.extend(function() {});
```

## Usage
```javascript
var foo = new Server;
foo.on('data', function(data) {
    console.log(data);
});
foo.emit('data', 'Hello, World.');
```

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