Getting Started
Installation
Node
npm
npm install --save-dev @fullstacksjs/toolboxpnpm
pnpm add --save-dev @fullstacksjs/toolboxyarn
yarn add --dev @fullstacksjs/toolboxDeno
import * as toolbox from 'https://raw.githubusercontent.com/fullstacksjs/toolbox/main/mod.ts'Browser ESM
ES Module
<script type="module">
import * as toolbox from 'https://www.unpkg.com/@fullstacksjs/toolbox@<VERSION>/lib/esm/index.js';
</script>Script
<script src='https://www.unpkg.com/@fullstacksjs/toolbox/iife/index.js'></script>
<script>
console.log(window.Toolbox)
</script>