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: 2 months 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

```