@dviih/randomstring
v2.0.2
Published
Generate random strings in Node.js
Downloads
1
Readme
Random String
Generate random strings in Node.js can be slow, this project aims in the speed so, we have a fast C++ backend to generate it for you.
How to use:
- We provide two standard charsets, the Standard which is [az-AZ-09] and the Extended including the Standard plus some extra symbols.
import RandomString from "@dviih/randomstring";
console.log(RandomString.generate(2_500_000, RandomString.Charset.Standard));