Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

email-multiplexer

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

email-multiplexer

Gets all variants of an email address filling with dots

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

email-multiplexer

Build Status dependencies Status npm version

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 pepito@gmail.com, pep.ito@gmail.com or p.e.p.i.t.o@gmail.com 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:

With an email like LeonardodaVinci@gmail.com (15 characters of length) you get 16384 email variants.

Install

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

$ npm install email-multiplexer --save

Quick start

Create myapp.js file with this content:

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

const emailVariants = emailMultiplexer('pipito@gmail.com');

console.log(emailVariants);

Then run your script:

$ node myapp.js
[ 'pepito@gmail.com',
  'pepit.o@gmail.com',
  'pepi.to@gmail.com',
  'pepi.t.o@gmail.com',
  'pep.ito@gmail.com',
  'pep.it.o@gmail.com',
  'pep.i.to@gmail.com',
  'pep.i.t.o@gmail.com',
  'pe.pito@gmail.com',
  'pe.pit.o@gmail.com',
  'pe.pi.to@gmail.com',
  'pe.pi.t.o@gmail.com',
  'pe.p.ito@gmail.com',
  'pe.p.it.o@gmail.com',
  'pe.p.i.to@gmail.com',
  'pe.p.i.t.o@gmail.com',
  'p.epito@gmail.com',
  'p.epit.o@gmail.com',
  'p.epi.to@gmail.com',
  'p.epi.t.o@gmail.com',
  'p.ep.ito@gmail.com',
  'p.ep.it.o@gmail.com',
  'p.ep.i.to@gmail.com',
  'p.ep.i.t.o@gmail.com',
  'p.e.pito@gmail.com',
  'p.e.pit.o@gmail.com',
  'p.e.pi.to@gmail.com',
  'p.e.pi.t.o@gmail.com',
  'p.e.p.ito@gmail.com',
  'p.e.p.it.o@gmail.com',
  'p.e.p.i.to@gmail.com',
  'p.e.p.i.t.o@gmail.com' ]

Keywords

FAQs

Package last updated on 25 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc