Skip to content

1.9.0

Compare
Choose a tag to compare
@matthewp matthewp released this 06 Sep 10:51
· 84 commits to master since this release

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>