1.0.3 • Published 2 months ago

secure-short-id v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

Secure Short ID Generator

Secure Short ID Generator is a Node.js module that provides a secure and efficient way to generate short IDs, suitable for various use cases such as unique identifiers in databases, session IDs, URL shorteners, etc.

Features

  • Generates short IDs using a secure algorithm.
  • Customizable length for generated IDs.
  • Supports a wide range of characters, making IDs URL-friendly.
  • Ensures uniqueness of generated IDs, even in high-demand scenarios.
  • Suitable for applications where security and uniqueness are critical.

Installation

You can install the Secure Short ID Generator module via npm:

npm install secure-short-id

Usage

const generateShortId = require('secure-short-id');

// Generate a short ID with default length (8 characters)
const shortId = generateShortId();
console.log(shortId);

// Generate a short ID with custom length (e.g., 12 characters)
const customLengthShortId = generateShortId(12);
console.log(customLengthShortId);

API

generateShortId([length])

Generates a short ID with the specified length. If no length is provided, the default length is 8 characters.

  • length (optional): The length of the generated short ID (default is 8 characters).

Returns: A string representing the generated short ID.

License

This project is licensed under the ISC License.

1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago