1.0.0 • Published 3 years ago
js-binder v1.0.0
Binder.js
Lightweight and powerful data binding system for building user interfaces
A perfect solution for really small projects. It will boost your productivity with < 15Kb script without downloading and compiling a huge amount of code.
Installation
Download and link the binder.min.js into your HTML page.
Quick Start
HTML
<div id="app">
{{ message }}
</div>
JavaScript
import Binder from 'js-binder'
let app = new Binder(document.getElementById('app'), {
data: {
message: 'Hello World'
}
})
Continue with the template syntax part or with options properties.
Inspired by:
- Vue.js
- Rivets.js
- Twig
License
This project is licensed under the MIT license.
1.0.0
3 years ago