Simple and reliable random number / word / string (number+alphabets) generator that just works!
npm install randomnumberandwordgenerator

alt="build status">

Random number / word / string Generator for Node JS / Express JS / Javascript that just works
=======================================
A small and reliable library for creating a random number / word / string of given length.
Length must be an integer and greater than 0.
``shell`
npm install randomnumberandwordgenerator --save
Usage - Example 1
``
var random = require('randomnumberandwordgenerator');
var randomNumberGenerator = random.randomNumberGenerator;
var randomNumber = randomNumberGenerator(30);
console.log("This is randomness - " , randomNumber);
prints some random number of length 30 ( example - 583894646777687598796646685553 )
``
var random = require('randomnumberandwordgenerator');
var randomWordGenerator = random.randomWordGenerator;
var randomWord = randomWordGenerator(30);
console.log("This is randomness - " , randomWord);
prints some random word of length 30 ( example - eIAILRnjJTBdIDSKwJrInIxOcPGUtn )
``
var random = require('randomnumberandwordgenerator');
var randomStringGenerator = random.randomStringGenerator;
var randomString = randomStringGenerator(30);
console.log("This is randomness - " , randomString);
prints some random string of length 30 ( example - cnbq0smX4PhNpLcFLGcSTLFoKct3ML )
`shell``
npm test
In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Lint and test your code.
* 0.0.1 Initial release
* 0.0.2 New release