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
- Host: GitHub
- URL: https://github.com/averagemarcus/bindit.js
- Owner: AverageMarcus
- Created: 2016-07-25T20:26:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-30T05:56:17.000Z (almost 10 years ago)
- Last Synced: 2025-02-12T11:24:47.964Z (over 1 year ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```
