Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kmturley/tie

Bind data to html elements
https://github.com/kmturley/tie

Last synced: about 2 months ago
JSON representation

Bind data to html elements

Awesome Lists containing this project

README

        

# Tie

Automatic binding of data to html elements. Simply include the library and add your data-tie attributes.

Main advantages of using Tie:

* 1.4KB in size (minified)!
* Bind data to the dom using data-tie
* auto load by putting data-tie an the root object name on the body

Usage example:
```html




var tiedata = {
person: {
name: 'Joe Bloggs',
age: 23
}
};
//start tie and provide data
tie.init(tiedata);

```