@fullstacksjs/toolbox
v4.22.0
Published
a zero-dependency collection of missing JavaScript utilities
Readme
Welcome to Toolbox! A zero-dependency 📦 tree-shakable🌲 collection of missing JavaScript utilities.
Table of Contents
Installation
NodeJS
$ npm install --save-dev @fullstacksjs/toolboxDeno
import * as toolbox from 'https://raw.githubusercontent.com/fullstacksjs/toolbox/main/mod.ts'Browser
<script src='https://www.unpkg.com/@fullstacksjs/toolbox/iife/index.js'></script>
<script>
console.log(window.Toolbox)
</script>Contributing
Development of toolbox happens in GitHub, and we appreciate contributions.
Prerequisite
- bash
- Node.JS>=20
Pull Request
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 installto have all dependencies. - To start development run
npm run test:watch. - Write tests in
src/<scope>/<name>.spec.tsand implementation insrc/<scope>/<name>.ts. - Add JSDoc for you function with signature and examples.
- Add the documentation using doc template page to the
docs/<scope>/<function>.mdxand updatedocs/<scope>/_meta.jsonfile. - Ensure everything is ok
npm run verify.
Code of Conduct
Documentation
Please check out the documentation page
