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

https://github.com/averagemarcus/bindit.js

Simple data binding for modern browsers
https://github.com/averagemarcus/bindit.js

hacktoberfest

Last synced: over 1 year ago
JSON representation

Simple data binding for modern browsers

Awesome Lists containing this project

README

          

# BindIt.js

Simple data binding for modern browsers

## Example

```html





function makeItBold(value) {
this.innerHTML = `<b>${value}</b>`;
}

const state = {
name: {
first: 'Jane',
last: 'Smith'
},
age: 21
};

let context = bindIt(state);

```

![image](https://cloud.githubusercontent.com/assets/3384072/17116307/1ca305f6-52af-11e6-81c6-767266f63718.png)