A fast, portable, flexible JavaScript component framework
A fast, portable, flexible JavaScript component framework.
NPM:
$ npm i san
CDN:
<title>Quick Start</title> <script src="https://unpkg.com/[email protected]"></script> <script> const MyApp = san.defineComponent({ template: ` <div> <input type="text" value="{=name=}"> <p>Hello {{name}}!</p> </div> ` }); let myApp = new MyApp({ data: { name: 'San' } }); myApp.attach(document.body); </script>
Please visit document ChangeLog
San is MIT licensed.