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.
- Host: GitHub
- URL: https://github.com/jerrebm/Freemail-Webpack
- Owner: jerrebm
- Created: 2017-07-12T15:47:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T17:06:52.000Z (almost 9 years ago)
- Last Synced: 2025-03-05T18:48:40.491Z (over 1 year ago)
- Topics: email-parsing, email-validation, freemail, npm-package, webpack
- Language: JavaScript
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```