README
This is by no means near to being finished, just trying around with npm
Usage
npm i @codingkiwi/spook
node.js
const { Grid } = require("@codingkiwi/spook");
webpack
//use modules directly for tree shaking
import { Grid } from "@codingkiwi/spook/src";
//or use the whole transpiled library
import { Grid } from "@codingkiwi/spook";
browser
<script src="dist/spook.min.js"></script>
<script>
let grid = new Spook.Grid(16, 16);
</script>