npm install nonce-fast






``bash`
npm i nonce-fast
or
`bash`
yarn add nonce-fast
`javascript
const Nonce = require('nonce-fast'),
nonce = Nonce(9); # define the length of the string
nonce(); # '802354675'
nonce(); # '296876554'
nonce(); # '269567223'
`
Compared with the original nonce generator
```
Nonce x 1,783,560 ops/sec ±1.69% (83 runs sampled)
NonceFast x 5,832,445 ops/sec ±2.35% (77 runs sampled)
Fastest is NonceFast
🎉 Some hugs to [Abrkn][github-user-abrkn] for the original project [nonce][github-rep-nonce] 🍻
[github-user-abrkn]: https://github.com/abrkn
[github-rep-nonce]: https://github.com/abrkn/nonce