gfynonce v1.0.2
gfynonce -

gfynonce is a "small" library that generates unique word compositions in the "adjective, adjective, animal" format that both Gfycat and Twitch uses. It tries it's best to generate nonces without repeating the same adjective and allows some customization, such as providing the number of adjectives desired or the separator character.
Installation and Usage
For your convenience, it is available in 3 forms, so choose whatever will work best for you:
Command Line
Installing gfynonce for the command line is as simple as running the following command:
npm i -g gfynonceThen, simply run gfynonce and it will generate a nonce with the default settings.
$ gfynonce
FatSmallAmericanBulldogAdditionally, you can provide some arguments to customize it, such as --adjectives <number> and --separator <char>.
$ gfynonce --adjectives 5 --separator .
Big.Small.Fancy.Elegant.Shy.DipperNode
The installation procedure is almost the same, simply add it to your current project:
npm i --save gfynonceAnd you should be good to import it!
const gfynonce = require('gfynonce');
console.log(gfynonce({ adjectives: 1, separator: '_' }));
// Tiny_HogBrowser
Unpkg kindly provides a fast CDN for NPM packages which you can use to access the UMD script.
<script src="https://unpkg.com/gfynonce@latest/dist/gfynonce.min.js"></script>
<script>
console.log(gfynonce());
// HugeSmallArthropods
</script>