A simple addon for adding RxJS 5 to your Ember.js app.
This only makes the library available for consumption as ES6 modules, and will, in the future, be responsible for the most basic level of integration. Anything further should be accomplished via other addons that bring this one in as a dependency.
You can install this addon using ember-cli
ember install ember-rx-shim
RxJS may be imported as ES6 modules
import Rx from 'rxjs/Rx';
let observable = new Rx.Observable((observer) => {
...
});
git clone <repository-url>
this repositorycd ember-rx-shim
npm install
bower install
ember serve
- Visit your app at http://localhost:4200.
npm test
(Runsember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://ember-cli.com/.