Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/koalazak/email-multiplexer
- Owner: koalazak
- License: mit
- Created: 2017-02-25T14:20:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-07T00:43:44.000Z (over 7 years ago)
- Last Synced: 2024-09-16T16:43:20.950Z (about 2 months ago)
- Topics: account, address, dot, dots, email, fill, gmail, multi, multiplexer, outlook, register, spam, variants
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]' ]
```