1.0.21 • Published 6 years ago

account-gen v1.0.21

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

account-gen

A small module to quickly create fake accounts or a fake account for a specific website.

Installation

Install via NPM:

npm install account-gen

change log

ChangeLog-

Updates for 1.0.21-
now that this module is getting attention im..
- fixing my spelling (lol)
- fixed and isse were i did not close a function
- added a fake credit card gen
you can email me your suggestions on what to add next.
- fixed the webgen function (now returns error if error)

Usage

webgen function

var gen = require("account-gen");

console.log(gen.webgen("http://www.netflix.com"));
// suported domains: "http://www.spotify.com", "http://www.roblox.com", "http://www.minecraft.net", "http://www.crunchyroll.com", and "http://www.netflix.com"

other functions

var gen = require("account-gen");

var pass = gen.passgen(); // creates a fake password
console.log(pass); // logs the variable pass


var email = gen.emailgen("gmail.com"); // creates a fake email with the @gmail.com (can be changed to any domain)
console.log(email); // logs the variable email


var acc = gen.accgen("gmail.com"); // create a fake email + password to look like a account.
console.log(acc); // logs the variable acc


var num = gen.phgen(); // uses the randomstring.js module to generate a string value with the format of a phonenumber
console.log("num");

var card = gen.cardgen(); // 
console.log(card);

advanced functions

//custom string gen
var gen = require("account-gen");


var characterSet = "qwerty";
var length = 6;

var string = gen.stringgen(length,characterSet);
console.log(string);
//------------------------

coming soon

May add a credit card gen in the future.

contact

  • teecupland@gmail.com
1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago