Keymachine
Zero dependency, lightweight and simple key generator for the JS world
Usage Fields
Keymachine works very well in cases such as automatically assigned Email passwords, private invitation codes, verification keys, automatic link creation, etc.
Installation
Npm:
npm install keymachine
Yarn:
yarn add keymachine
Browsers:
<script src="https://unpkg.com/keymachine@2.1.0/index.js"></script>
Example Usage
import keymachine from 'keymachine';
let randomKey = keymachine();
let randomKey = keymachine({ possibility: 'KJAUZNSO27AJSND', length: 18, case: 'upper' });