Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (19 loc) · 480 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 480 Bytes

ES Modules App Skeleton

Template project for modern vanilla ES modules apps with sane linting settings.

Demo

Demo page - can be found under demo/index.html

Installation

npm install --save app

Usage

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>