Skip to content

Commit

Permalink
Added eventemitter3
Browse files Browse the repository at this point in the history
Fixes #4
  • Loading branch information
spoike committed Jul 28, 2014
1 parent df1c6a7 commit d76f957
Show file tree
Hide file tree
Showing 9 changed files with 209 additions and 278 deletions.
16 changes: 14 additions & 2 deletions README.md
Expand Up @@ -184,10 +184,22 @@ var statusHistoryStore = Reflux.createStore({

});
```
### Switching EventEmitter

Don't like to use the EventEmitter provided? You can switch to another one, such as NodeJS's own like this:

## License
```javascript
// Do this before creating actions or stores

Reflux.setEventEmitter(require('events').EventEmitter);
```

## Colophon

[List of contributors](https://github.com/spoike/reflux/graphs/contributors) is available on Github.

This project is licensed under [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause). Copyright (c) 2014, Mikael Brassman.

For more information about the license for this particular project [read the LICENSE.md file](LICENSE.md).
For more information about the license for this particular project [read the LICENSE.md file](LICENSE.md).

This project uses [eventemitter3](https://github.com/3rd-Eden/EventEmitter3), is currently MIT licensed and [has it's license information here](https://github.com/3rd-Eden/EventEmitter3/blob/master/LICENSE).

1 comment on commit d76f957

@dashed
Copy link
Contributor

@dashed dashed commented on d76f957 Jul 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Please sign in to comment.