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.

5 lines (4 loc) 170 B
import { uuidv4, uuidv5 } from './uuid'; import { cuidId, slug } from './cuid'; import { ObjectId } from './objectid'; export { ObjectId, uuidv4, uuidv5, cuidId, slug };