npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@harsha-ray/generateid

v1.0.0

Published

A lightweight and configurable unique ID generator for Node.js.

Readme

generateid

A lightweight and configurable unique ID generator for Node.js.

generateid generates random IDs using a configurable character set and length. A validation callback allows the consuming application to determine whether a generated ID is available before it is returned.

Installation

npm install @harsha-ray/generateid

Usage

import { GenerateId } from "@harsha-ray/generateid";

const generator = new GenerateId();

const id = generator.generate(() => true);

console.log(id);

Example output:

aK8xP2qL

Custom Configuration

You can configure the generated ID length, character set, and maximum number of generation attempts.

import { GenerateId } from "@harsha-ray/generateid";

const generator = new GenerateId({
    length: 12,
    chars: "abcdefghijklmnopqrstuvwxyz0123456789",
    maxAttempts: 1000,
});

const id = generator.generate(() => true);

console.log(id);

Validating IDs

The generate() method accepts a validation callback.

The callback receives each generated candidate ID and must return:

  • true — accept the generated ID.
  • false — reject the generated ID and generate another candidate.

For example, an application can check whether an ID already exists before accepting it:

import { GenerateId } from "@harsha-ray/generateid";

const database = [
    "cb",
    "bb",
];

const generator = new GenerateId({
    length: 2,
    chars: "cb",
});

const id = generator.generate((candidate) => {
    return !database.includes(candidate);
});

console.log(id);

The library generates candidate IDs, while the consuming application is responsible for determining whether a candidate is already in use.

Options

length

Type: number Default: 8

The length of the generated ID.

const generator = new GenerateId({
    length: 10,
});

chars

Type: string

Default:

abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789

The characters that can be used to generate the ID.

const generator = new GenerateId({
    chars: "ABC123",
});

maxAttempts

Type: number Default: 1000

The maximum number of generation attempts before an error is thrown.

const generator = new GenerateId({
    maxAttempts: 500,
});

Errors

The constructor throws a TypeError when an invalid option is provided.

The generate() method throws a TypeError when the validation callback is missing or invalid.

If no acceptable ID is generated within maxAttempts, an error is thrown.

Requirements

  • Node.js 18 or higher

License

MIT