1.0.2 • Published 5 years ago

domain-generator v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

This is a very simple module that will enable you generate as many domains as you want without having to type all of the different domains.

USAGE

var dg = require('domain-genetator');

var tld, domainlist, domain;
tld = [ '.com','...write other tld here...'];
domain = 'example.com';

//now generate the domains

domainlist = dg.dg(domain, tld, function(err){
    if (err) throw err;
}

console.log(domainlist);

Enjoy...!!!