1.0.7 • Published 11 months ago

randomery v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

Randomery

Randomery is a package... well, just like the package name, Randomery generates random things.

npm

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)

1.0.7

11 months ago

1.0.6

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago