Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliendargelos/emitter
Event emitter for javascript.
https://github.com/juliendargelos/emitter
Last synced: 4 days ago
JSON representation
Event emitter for javascript.
- Host: GitHub
- URL: https://github.com/juliendargelos/emitter
- Owner: juliendargelos
- License: mit
- Created: 2019-02-12T14:07:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T14:20:22.000Z (almost 6 years ago)
- Last Synced: 2024-11-11T05:39:59.472Z (2 months ago)
- Language: JavaScript
- Size: 547 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Emitter
[![Maintainability](https://api.codeclimate.com/v1/badges/b5142f6b123a554621f5/maintainability)](https://codeclimate.com/github/juliendargelos/emitter/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/b5142f6b123a554621f5/test_coverage)](https://codeclimate.com/github/juliendargelos/emitter/test_coverage)Event emitter for javascript.
- [Getting started](https://juliendargelos.github.io/emitter/tutorial-getting-started)
- [Documentation](https://juliendargelos.github.io/emitter)
- [Repository](https://www.github.com/juliendargelos/emitter)### Install
With yarn:
```shell
yarn add @juliendargelos/emitter
```With npm:
```shell
npm install @juliendargelos/emitter --save
```### Development
Clone the repository:
```shell
git clone [email protected]:juliendargelos/emitter.git
```Install dependencies:
```shell
yarn
```Link git hooks:
```shell
yarn hooks:link
```Generate documentation:
```shell
yarn docs
```Serve documentation:
```shell
yarn docs:serve
```Lint:
```shell
yarn lint
```Test:
```shell
yarn test
```Build:
```shell
yarn build
```