Minimal Framework for building User Interfaces directly in HTML markup.
<div id="app">
<div :state='{ msg : "Welcome to Leaf js"}'>
<span :text="msg"></span>
</div>
</div>
<script src="../dist/leaf-min.js"></script>
<script>
let lf = new leaf('#app');
</script>
Please check out the docs
npm run docs
serve examples
and dist
dir
npm run examples
Please read CONTRIBUTING.md before contributing to this project.
We are using jest
for testing environment with jest-environment-jsdom
npm run build && npm run test
Dont forget to make a build before testing !
This project is licensed under the MIT License - see the LICENSE file for details.