Just some simple JavaScript Utils.
npm i utilidades
or
npm i https://github.com/201flaviosilva/utilidades#v1.4.1
import { randomNumber } from "utilidades";
console.log(randomNumber(1, 20));
<script src="https://cdn.jsdelivr.net/npm/utilidades@1.4.1/build/utils.min.js"></script>
<script src="./your-js-file.js"></script>
// ./your-js-file.js
console.log(randomNumber(1, 20));
Command | Description |
---|---|
npm install |
Install project dependencies |
npm run clear |
Delete the "build" and "types" and "docs" folder |
npm run jsDoc |
Build a docs page based in the jsdoc |
npm run types |
Build the types |
npm run compile |
Builds code bundle with production settings (minification, etc..) |
npm run build |
Bundle the code, create the types and teh docs folder |
npm run bump |
Update lib in the npm |