1.9.0
This is a minor release, adding a new ES module bundle to the distributed package. This module is available as page.mjs
. It contains one export, the default export which is the usual page object.
<script type="module">
import page from "//unpkg.com/page/page.mjs";
page('/home', () => {
showHome();
});
page();
</script>