@smakss/random-string
Advanced tools
Weekly downloads
Readme
This package will generate a random dummy string based on the available set of characters or provided ones, you can also indicate the length of your desired random string. In case you don't care about uniqueness and don't want to use UUID this one will help you to achieve what you want.
To install it you can simply do the following command:
npm i @smakss/random-string
or
yarn add @smakss/random-string
to include it with common js module you should do this:
var randomString = require("@smakss/random-string");
and to include it with ECMAscript module you can simply do this one:
import randomString from "@smakss/random-string";
then to use it within your application you can do it just like this:
Generate a random string:
randomString();
// Result: 'epTfoad497&p'
NOTE: If the input params were empty the length of string will be selected randomly between 1-20.
Generate a random string with a length of 10:
randomString(10);
// Result: 'BD@Z8dKf2%'
You can provide both length and allowed characters:
randomString(10, "abCD#@");
// Result: 'b@@#aDaC##'
You can check the working demo in runkit.
or
FAQs
Generates random dummy string with random length.
The npm package @smakss/random-string receives a total of 571 weekly downloads. As such, @smakss/random-string popularity was classified as not popular.
We found that @smakss/random-string demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.