Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/koalazak/email-multiplexer

Gets all variants of an email address filling with dots.
https://github.com/koalazak/email-multiplexer

account address dot dots email fill gmail multi multiplexer outlook register spam variants

Last synced: about 1 month ago
JSON representation

Gets all variants of an email address filling with dots.

Awesome Lists containing this project

README

        

# email-multiplexer
[![Build Status](https://travis-ci.org/koalazak/email-multiplexer.svg?branch=master)](https://travis-ci.org/koalazak/email-multiplexer)
[![dependencies Status](https://david-dm.org/koalazak/email-multiplexer/status.svg)](https://david-dm.org/koalazak/email-multiplexer)
[![npm version](https://badge.fury.io/js/email-multiplexer.svg?r)](http://badge.fury.io/js/email-multiplexer)

Gets all variants of an email address filling with dots. *One address to rule them all.*

## The dots in your Gmail/Outlook address don’t matter

You can email `[email protected]`, `[email protected]` or `[email protected]` and they would all go to the same place. The periods in your email address are actually totally meaningless.

The dots and capitalization can help make the Gmail address easier to read for humans, but the Google Gmail servers don't even notice them.

Obtaining all your variants you can create X accounts in other services using a unique verified gmail account.

The longer the address, the more variants you can get:

[![](https://latex.codecogs.com/gif.latex?%5Cinline%20%5Cdpi%7B120%7D%20Variants%3D2%5E%7Blength-1%7D)](https://latex.codecogs.com/gif.latex?%5Cinline%20%5Cdpi%7B120%7D%20Variants%3D2%5E%7Blength-1%7D)

With an email like `[email protected]` (15 characters of length) you get 16384 email variants.

# Install

First you need node.js installed and then in your project directory:

```bash
$ npm install email-multiplexer --save
```

# Quick start

Create `myapp.js` file with this content:

```javascript
const emailMultiplexer = require ('email-multiplexer');

const emailVariants = emailMultiplexer('[email protected]');

console.log(emailVariants);

```

Then run your script:

```
$ node myapp.js
[ '[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]' ]
```