0.0.1 • Published 1 year ago

create-the-id v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

create-the-id

NPM INSTALL NODE JS

Create simple unique random id and with support of TypeScript.

Use Case

For example you can use this package for creating user id, creating product id and many other thing that you can set with an id.

Install

npm install create-the-id

In JavaScript

const createID = require('create-the-id');

// Without argument (default digit 6)
const id = createID(); // Result -> z5k1c9

// With argument, you can set any digits on the argument
const id = createID(14);
// It will return id with 14 digits
// Return -> r9m2c3s7p2k8b5

// Example

const user = {
    id: `usr-${createID(10)}`, // Return -> usr-c3s8x0k2f7
    email: "user_example@mail.com",
    username: "user_example",
};

await db.registerUser(user);

In TypeScript

import createID from 'create-the-id';

// Without argument (default digit 6)
const id: string = createID(); // Result -> z5k1c9

// With argument, you can set any digits on the argument
const id: string = createID(14);
// It will return id with 14 digits
// Return -> r9m2c3s7p2k8b5

// Example

const user = {
    id: `usr-${createID(10)}`, // Return -> usr-c3s8x0k2f7
    email: "user_example@mail.com",
    username: "user_example",
};

await db.registerUser(user);