TodePond / Habitat

my javascript helpers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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="habitat.js"></script>
<script>
  print("Hello world!");
</script>

About

my javascript helpers

License:MIT License


Languages

Language:JavaScript 93.6%Language:CSS 6.1%Language:HTML 0.4%