DativeJs - A Micro JavaScript Ui Framework Installation Download <script src="path/to/dative.min.js"></script> CDN <!--Development--> <script src="https://cdn.jsdelivr.net/gh/Tobithedev/dativejs@main/dist/dative.js"></script> <!--Production--> <script src="https://cdn.jsdelivr.net/gh/Tobithedev/dativejs@main/dist/dative.min.js"></script> Clone The Template git clone https://github.com/Tobithedev/dative-template.git EsModule import Dative from "https://cdn.jsdelivr.net/gh/Tobithedev/dativejs@main/dist/dative.es.min.js"; Get Started <body> <div id="app"></div> <script src="https://cdn.jsdelivr.net/gh/Tobithedev/dativejs@main/dist/dative.min.js"></script> <script> // Code goes here </script> </body> <body> <div id="app"></div> <script src="https://cdn.jsdelivr.net/gh/Tobithedev/dativejs@main/dist/dative.min.js"></script> <script> var vm = new Dative({ el: "#app", data:{ msg: "Hello World" }, template(){ return ` <h1 :text="msg"></h1> `; } }); vm.render() </script> </body>