Update the introductory text in the README.
Showing
1 changed file
with
1 additions
and
13 deletions
1 | # Rivets.js | 1 | # Rivets.js |
2 | 2 | ||
3 | Rivets.js is a declarative data binding facility that plays well with existing frameworks such as [Backbone.js](http://backbonejs.org), [Spine.js](http://spinejs.com) and [Stapes.js](http://hay.github.com/stapes/). It aims to be lightweight (2.3KB minified and gzipped), extensible, and configurable to work with any event-driven model. | 3 | Rivets.js is a DOM-based templating system that sits ontop of a configurable component architecure. It let’s you build model-driven views (MDV) using declarative two-way data binding. If used properly it can reduce code complexity in your app by elimating the need to manually update the DOM, letting you focus more on your application’s data and domain logic. |
4 | |||
5 | --- | ||
6 | |||
7 | Rivets.js keeps your UI and model data in sync for you, so you can spend less time manually tying into the DOM and more time on your actual data and application logic. | ||
8 | |||
9 | Out-of-the-box it’s got: | ||
10 | |||
11 | - **One-way** and **two-way** binding to/from DOM elements. | ||
12 | - **Computed properties** with dependent attributes. | ||
13 | - **Formatters** to allow mutatating values through piping. | ||
14 | - **A powerful custom bindings API** for building your own binding routines. | ||
15 | - **Easy debugging** and manual bidirectional syncing of bindings. | ||
16 | 4 | ||
17 | ## Getting Started and Documentation | 5 | ## Getting Started and Documentation |
18 | 6 | ... | ... |
-
Please register or sign in to post a comment