@patrykszwiec/randomid-generator
v1.0.6
Published
This is a simple JavaScript function that generates a random alphanumeric ID of a specified length.
Downloads
10
Readme
RandomID Generator Script
This is a simple JavaScript function that generates a random alphanumeric ID of a specified length.
Usage
To use this script in your project, follow these steps:
Make sure the script is included and accessible in your project.
Call the randomID function and pass the desired length of the ID as an argument.
const randomID = require('@patrykszwiec/randomid-generator');
const idLength = 10;
const randomGeneratedID = randomID(idLength);
console.log(randomGeneratedID); // Example output: "q1B8pRt9Y0"
Function Explanation
The randomID function takes one argument:
idLength (number): The desired length of the generated ID. It generates a random ID by iterating over a string of characters that includes uppercase letters, lowercase letters, and digits. For each iteration, it selects a random character from the string and appends it to the id variable until the specified idLength is reached.
License
This script is provided under the MIT License. Feel free to use, modify, and distribute it according to the terms of the MIT License.