TodePond / Habitat

my javascript helpers
MIT License
45 stars 5 forks source link

Habitat

Habitat is a bunch of jumpyscript helpers that I use in my projects.

How to use it

Import from it.

<script type="module">
  import { print } from "./habitat.js";
  print("Hello world!");
</script>

If you want to embed it instead, just Ctrl+F and delete every export in the file. Then...

<script src="https://github.com/TodePond/Habitat/raw/main/habitat.js"></script>
<script>
  print("Hello world!");
</script>