Skip to content

abellsmythe/random-emails-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Random Emails Generator

Return n amount of random email addresses.

MIT License

Install

$ npm install --g random-emails-generator

Usage

Generate a Single Random Email

$ random-emails-generator

# [email protected]

Generate a Single Random Email with email level n

$ random-emails-generator --email-level 2

# [email protected]

Generate a Single Random Email with domain level n

$ random-emails-generator --domain-level 2

# [email protected]

Generate a Single Random Email with a custom domain

$ random-emails-generator --domain toncho.dev

# [email protected]

Generate n Random Emails

$ random-emails-generator --count 3

# [email protected], [email protected], [email protected]

Generate n Random Emails with custom Separator

$ random-emails-generator --count 3 --separator ' - '

# [email protected] - [email protected] - [email protected]

Help

$ random-emails-generator --help

# or

$ random-emails-generator -h

All the commands can be combined

Author