$ npm install --save-dev @fullstacksjs/toolbox
import * as toolbox from 'https://raw.githubusercontent.com/fullstacksjs/toolbox/main/mod.ts'
<script src='https://www.unpkg.com/@fullstacksjs/toolbox/iife/index.js'></script>
<script>
console.log(window.Toolbox)
</script>
Development of toolbox happens in GitHub, and we appreciate contributions.
The FullstacksJS team is monitoring for pull requests. We will go ahead and review your pull request as soon as possible.
Before submitting a pull request, please make sure the following is done:
- Fork the repository and create your feature branch from dev.
- Run
npm install
to have all dependencies. - To start development run
npm run test:watch
. - Write tests in
src/<scope>/<name>.test.ts
and implementation insrc/<scope>/<name>.ts
. - Add the documentation page to the
docs/<scope>/<function>.mdx
and updatedocs/<scope>/_meta.json
file. - Ensure everything is ok
npm run verify
.
Please check out the documentation page