UNPKG

@fidaktk/ids

Version:

A lightweight, dependency-efficient ID generator package for Node.js and web projects. Supports BSON `ObjectId` (compatible with MongoDB/Mongoose), UUIDv4/v5, CUID2, and URL-safe slug IDs.

4 lines (3 loc) 129 B
import { v4, v5 } from 'uuid'; export const uuidv4 = () => v4(); export const uuidv5 = (name, namespace) => v5(name, namespace);