1.0.6 • Published 9 months ago

@patrykszwiec/randomid-generator v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

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.

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

10 months ago