quickid

1.0.4 • Public • Published

quickid

quickid is a lightweight and efficient npm package designed to generate unique and random IDs effortlessly. With simplicity in mind, Quick ID provides a single function, generate(), which returns a randomly generated alphanumeric string of a specified length.

Key Features

  • Easy Integration: Incorporate Quick ID seamlessly into your projects with a single function call.
  • Customizable Length: Tailor the length of the generated IDs to suit your specific requirements.
  • Efficient and Lightweight: Quick ID is designed for efficiency, ensuring minimal impact on performance while delivering reliable and unique identifiers.

Installation

Install Quick ID in your project using npm:

npm install quickid or yarn add quickid

Usage

const quickId = require('quickid');

// Generate a default 8-character ID
const id = quickId.generate();
console.log(id);

You can customize the length of the generated ID by providing an argument to the generate function:

const customLength = 12;
const customId = quickId.generate(customLength);
console.log(customId);

Contributing

Contributions are welcome! If you encounter a bug or have a feature request, please open an issue or submit a pull request.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i quickid

      Weekly Downloads

      1

      Version

      1.0.4

      License

      ISC

      Unpacked Size

      2.33 kB

      Total Files

      3

      Last publish

      Collaborators

      • devhasanmia