Template project for modern vanilla ES modules apps with sane linting settings.
Demo page - can be found under demo/index.html
npm install --save app
Here is a basic HTML setup which should cover most needs:
<script type="module">
import App from './app.js';
const app = new App({
id: 'app',
onChange: (result) => { console.log(result); },
});
</script>