forms.js
v0.1.1
Published
Javascript two-way html binding template engine
Downloads
4
Maintainers
Readme
forms.js
##Javascript two-way html binding template engine
- work on node server and on browser
- two-way data binding on the browser
- DOM based template
Getting Started
Install the module with: npm install forms.js
var forms = require('forms.js');
var credential = {
username: '',
password: ''
};
// bind credential object to a DOM element form
forms.bind(document.getElementById('login-form'),credential);
Other stuff
- documentation - maybe I will add documentation if you ask it. open an issue for this.
- support - open an issue here.
License
MIT © 2014, Andrea Parodi