Rivets.js is a lightweight data binding and templating system that facilitates building data-driven views. Simply mutate properties at any depth on a bound object, and the UI updates automatically. This is achieved by subscribing to the individual junctions on keypaths directly. As mutations occur, the relevant binder functions are called to surgically update the specific DOM element.
It is entirely agnostic about the types of objects or other libraries you wish to use it with. Just define custom adapters for them as needed, or maybe someone already has.
<section id="auction">
<h2>{ auction.product.name }</h2>
<p>Current bid: { auction.currentBid | money user:settings.currency }</p>
<aside rv-if="auction.timeLeft | lt 120">
Hurry up! There is { auction.timeLeft | duration } left.
</aside>
</section>rivets.bind($('#auction'), { auction, user })Get started by reading the guide and refer to the reference for all included binders.
Additionally, you can find some community created binders as well as some example formatters and adapters in the wiki.
First, make sure to install any development dependencies.
$ npm install
Rivets.js uses gulp as its build tool. Run the following task to compile + minify the source into dist/.
$ gulp build
Rivets.js uses mocha as its testing framework, alongside should for expectations and sinon for spies, stubs and mocks. Run the following to run the full test suite.
$ npm test
- Ensure the bug can be reproduced on the latest master.
- Open an issue on GitHub and include an isolated JSFiddle demonstration of the bug. The more information you provide, the easier it will be to validate and fix.
- Fork the repository and create a topic branch.
- Make sure not to commit any changes under
dist/as they will surely cause conflicts for others later. Files underdist/are only committed when a new build is released. - Include tests that cover any changes or additions that you've made.
- Push your topic branch to your fork and submit a pull request. Include details about the changes as well as a reference to related issue(s).