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

https://github.com/jerrebm/Freemail-Webpack

A database of free and disposable email domains and a handy Webpack module for querying it.
https://github.com/jerrebm/Freemail-Webpack

email-parsing email-validation freemail npm-package webpack

Last synced: over 1 year ago
JSON representation

A database of free and disposable email domains and a handy Webpack module for querying it.

Awesome Lists containing this project

README

          

# Freemail-Webpack

This is a webpack compatible version of [freemail](https://github.com/willwhite/freemail)

A database of free and [disposable](http://en.wikipedia.org/wiki/Disposable_email_address)
email domains and a handy Webpack module for querying it.

### Install

```
npm install --save freemail-webpack
```

```javascript
import freemail from 'freemail-webpack';

freemail.isFree('smith@gmail.com');
> true
freemail.isFree('jack@mailinator.com');
> true
freemail.isDisposable('smith@gmail.com');
> false
freemail.isDisposable('jack@mailinator.com');
> true

```