aurelia-rxjs
An Aurelia plugin that allows you to bind to Rx Observables and Rx Subjects or use them as Binding Signals.
How to install this plugin?
- In your project install the plugin and
aurelia-binding-functions
viajspm
with following command
jspm install npm:aurelia-rxjs npm:aurelia-binding-functions
- Make Aurelia load the plugin by adding the following line to the
configure
function in themain.js
file of yoursrc
folder
export function configure(aurelia) { aurelia.use .standardConfiguration() .developmentLogging(); + aurelia.use.plugin('aurelia-binding-functions');+ aurelia.use.plugin('aurelia-rxjs'); aurelia.start().then(a => a.setRoot()); }
- If you use TypeScript or use Visual Studio Code the type declarations for
aurelia-rxjs
should be visible automatically.
Using the plugin (example)
View:
${@rx(counter)}recompute random${random & observableSignal: onClick}
ViewModel:
counter = Observable twoWayBinding = 1 onClick = { thisonClick thistwoWayBinding } // in this example we want to demonstrate // regeneration of the value based on the observableSignal // hence we fool Aurelia into thinking it's computed from 'nothing' @ { return Math }
Dependencies
Used By
This library isn't used by Aurelia. It is an optional plugin.
Platform Support
This library can be used in the browser as well as on the server.
Building The Code
To build the code, follow these steps.
- Ensure that NodeJS is installed. This provides the platform on which the build tooling runs.
- From the project folder, execute the following command:
npm install
- Ensure that Gulp is installed. If you need to install it, use the following command:
npm install -g gulp
- To build the code, you can now run:
gulp build
-
You will find the compiled code in the
dist
folder, available in three module formats: AMD, CommonJS and ES6. -
See
gulpfile.js
for other tasks related to generating the docs and linting.
Running The Tests
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
- Ensure that the Karma CLI is installed. If you need to install it, use the following command:
npm install -g karma-cli
- Ensure that jspm is installed. If you need to install it, use the following commnand:
npm install -g jspm
- Install the client-side dependencies with jspm:
jspm install
- You can now run the tests with this command:
karma start