Socket
Book a DemoInstallSign in
Socket

uniquegen

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uniquegen

uniquegen is an package for Node.js projects, enabling the generation of random numbers and words. It offers flexibility and ease of use, making it a valuable tool for developers.

8.6.8
latest
Source
npmnpm
Version published
Weekly downloads
109
-30.57%
Maintainers
2
Weekly downloads
 
Created
Source

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

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

Keywords

UniqueGen

FAQs

Package last updated on 15 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.