6.0.4 • Published 6 months ago

express_random_numbers_generator v6.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Random Numbers Generator

Express Random Numbers Generator is a lightweight and easy-to-use npm package that allows you to generate random numbers, floats, and other random data within a specified range. It provides a simple and reliable solution for incorporating random number generation into your Node.js applications.

Installation

You can install the Express Random Numbers Generator package using npm:

npm install express_random_numbers_generator

Usage

In your Node.js application, you can import and use the functions provided by the Express Random Numbers Generator package as follows:

• getAnyNumber

const { getAnyNumber } = require('express_random_numbers_generator');

// get any random value
const anyNumber = getAnyNumber();
console.log(anyNumber);  // OUTPUT: 675332

• getRandomNumber

const { getRandomNumber } = require('express_random_numbers_generator');

// Generate a random number between 0 and 100
const anyNumber = getRandomNumber(0,100);
console.log(anyNumber);   // OUTPUT: 54

• getRandomBoolean

const { getRandomBoolean } = require('express_random_numbers_generator');

// Generate a random boolean value (true or false)
const randomBool = getRandomBoolean();
console.log(randomBool);  // OUTPUT: true

• getRandomElementFromArray

const { getRandomElementFromArray } = require('express_random_numbers_generator');

// Generate a random element from an array
const fruits = ['apple', 'banana', 'orange', 'mango'];
const randomFruit = getRandomElementFromArray(fruits);
console.log(randomFruit);  // OUTPUT: orange

• getRandomWord

const { getRandomWord } = require('express_random_numbers_generator');

// Generate a random alphanumeric string of a given length
const randomString = getRandomWord(40);
console.log(randomString); // OUTPUT: qKgR928lNwGlANHEKmZvLVVvGTiuuPbfOYhMJo2j

• getRandomFloat

const { getRandomFloat } = require('express_random_numbers_generator');

// Generate a random float number between 0 and 50
const randomFloat = getRandomFloat(1,50);
console.log(randomFloat); // OUTPUT: 37.65583630394873

• shuffleArray Randomly

const { shuffleArray } = require('express_random_numbers_generator');

// Shuffle an array using the Fisher-Yates algorithm
const array = [1, 2, 3, 4, 5];
const shuffledArray = shuffleArray(array);
console.log(shuffledArray); // OUTPUT: [ 2, 4, 5, 1, 3 ]

License

License This project is released under the MIT License.
Free Package, Hell Yeah!

Contact

avinashtare.work@gmail.com

Author

卐🕉 Avinash Tare 🕉 卐

6.0.1

6 months ago

6.0.3

6 months ago

6.0.2

6 months ago

6.0.4

6 months ago

6.0.0

10 months ago

5.0.0

10 months ago

2.25.2

10 months ago

1.0.3

11 months ago

1.0.2

11 months ago

2.0.0

11 months ago

1.0.1

11 months ago

1.1.0

11 months ago

1.0.0

11 months ago