randomery
v1.0.7
Published
A package that have (almost) all the random things
Downloads
5
Maintainers
Readme
Randomery
Randomery is a package... well, just like the package name, Randomery generates random things.
Random things list:
Random number | randomery.randomnumber(minimum number, maximum number)
Random string | randomery.randomstring(string length)
Random RGB | randomery.randomRGB()
Random hex | randomery.randomHex()
Token | randomery.token()
Dice | randomery.dice()
Scramble | randomery.scramble(text)
Caesar cipher | randomery.caesarcipher(rotation count, text)
Password generator | randomery.pwgen(length)
Random binary | randomery.binary()
Setup code:
const randomery = require('randomery')
Yes, just like that!
Funni tips:
Very "powerful" encryption
const randomery = require('randomery')
console.log(randomery.caesarcipher(randomery.randomnumber(1, 25), "Your text here."))
The output will be caesar cipher but we don't know how many rotations applied.
How to look like hecker
const randomery = require('randomery')
setInterval(() => {
console.log(randomery.scramble("10100100101010101010101010101010101010100101010"))
}, 500)
The output will be random 0s and 1s sended into your console every half a second.
Complete documentation will be on this page: https://rand.samscodz.repl.co
DISCLAIMER:
This package is very very new, so if there's bugs, report to the owner (samscodz) by DMing him on Discord (sams331#7045)