uniquegen
TypeScript icon, indicating that this package has built-in type declarations

8.6.6 • Public • Published

UniqueGen

UniqueGen is an package for Node.js, It enables generating random numbers, alphanumeric and has a range of IDs.It offers flexibility and ease of use, making it a valuable tool for developers.

install size npm version License: MIT npm downloads CodeQL CircleCI

Features

  • Generate random numbers
  • Generate random words
  • Generate random symbols
  • Generate random mixed IDs

Security

UniqueGen is a secure package. It does not store any data on its server. All the data is generated on the user's system. It does not use any third-party API to generate data. It is a completely offline package.

Getting Started

To get started with UniqueGen, you must first install it in your project. You can install UniqueGen using npm or yarn. We recommend using npm.

Installation

To install UniqueGen, simply run the following command in your terminal:

npm install uniquegen@latest --save

Usage

To use UniqueGen, you must first import it into your project:

const UniqueGen = require('uniquegen'); // if you are using CommonJS
or;
import UniqueGen from 'uniquegen'; // if you are using ES6

Usage in CommonJS

const UniqueGen = require('uniquegen'); // if you are using CommonJS
or
import UniqueGen from 'uniquegen'; // if you are using ES6

const Number = UniqueGen.randomNumber( 10, true)
console.log(Number);
    output: 1234567890; // it will generate a random number of length 10 with zero in  way

const Number = UniqueGen.randomNumber( 10, false)
console.log(Number);
    output: 0123456789; // it will generate a random number of length 10 without zero in  way

const Word = UniqueGen.randomWord( 10, true)
console.log(Word);
    output: ABCDEFGHIJ; // it will generate a random word of length 10 with all alphabets in caps in  way

const Word = UniqueGen.randomWord( 10, false)
console.log(Word);
    output: abcdefghij; // it will generate a random word of length 10 with all alphabets in small in  way

const Symbol = UniqueGen.randomSymbol( 10)
console.log(Symbol);
    output: !@#$%^&***; // it will generate a random symbol of length 10 with all symbols in  way

const Mixed = UniqueGen.randomMixed( 10, false)
console.log(Mixed);
    output: abc#$%^&**; // it will generate a random mixed ID of length 10 with all alphabets in small in  way

const Mixed = UniqueGen.randomMixed( 10, true)
console.log(Mixed);
    output: ABC#$%^&**; // it will generate a random mixed ID of length 10 with all alphabets in caps in  way

Usage in ES6 way

const UniqueGen = require('uniquegen'); // if you are using CommonJS
or
import UniqueGen from 'uniquegen'; // if you are using ES6

const randomNumber = () => {
    const data = UniqueGen.randomNumber(10, true);
    console.log(data);
    output: 1234567899
}
randomNumber(); // it will generate a random number of length 10 with zero in asynchronous way

const randomNumber = () => {
    const data = UniqueGen.randomNumber(10, false);
    console.log(data);
    output: 0123456789
}
randomNumber(); // it will generate a random number of length 10 without zero in asynchronous way

const randomWord = () => {
    const data = UniqueGen.randomWord(10, true);
    console.log(data);
    output: ABCDEFGHIJ
}
randomWord(); // it will generate a random word of length 10 with all alphabets in caps in asynchronous way


const randomWord = () => {
    const data = UniqueGen.randomWord(10, false);
    console.log(data);
    output: abcdefghij
}
randomWord(); // it will generate a random word of length 10 with all alphabets in small in asynchronous way

const randomSymbol = () => {
    const data = UniqueGen.randomSymbol(10);
    console.log(data);
    output: !@#$%^&***
}
randomSymbol(); // it will generate a random symbol of length 10 with all symbols in asynchronous way

const randomMixed = () => {
    const data = UniqueGen.randomMixed(10, false);
    console.log(data);
    output: abc#$%^&**
}
randomMixed(); // it will generate a random mixed ID of length 10 with all alphabets in small in asynchronous way

const randomMixed = () => {
    const data = UniqueGen.randomMixed(10, true);
    console.log(data);
    output: ABC#$%^&**
}
randomMixed(); // it will generate a random mixed ID of length 10 with all alphabets in caps in asynchronous way

Adtional Features

  • You can set Custom Symbols, Words, Numbers & Mixed Data in third parameter of the function object.

Contributing

Ankan Saha Priya Ghosh

License

MIT

Project Status

This project is currently in development. Users can generate random numbers, words, symbols and mixed IDs in synchronous and asynchronous way. please update the package to get the latest version.

Donation

If you like my work and want to support me, you can donate me at PayPal

Thank You

Package Sidebar

Install

npm i uniquegen

Weekly Downloads

32

Version

8.6.6

License

MIT

Unpacked Size

55 kB

Total Files

39

Last publish

Collaborators

  • theankansaha
  • priya_ghosh