npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fakefilter

v0.1.838

Published

reliable fake and temp email filter solution for site operators

Downloads

16,761

Readme

FakeFilter

The intention of this project is to sweep temporary and fake email addresses from registrations. We collect fake email providers and their domains and want to publish them here in different formats. We want that site owners use this repo as reliable source to find out all fake/temp provider registration attempts.

Why FakeFilter

There are other lists like https://gist.github.com/adamloving/4401361 , https://disify.com/ , https://github.com/wesbos/burner-email-providers , https://github.com/disposable-email-domains/disposable-email-domains , https://github.com/elliotjreed/disposable-emails-filter-php , https://github.com/Propaganistas/Laravel-Disposable-Email , https://github.com/disposable/disposable - they do work with submissions. This is greatly appreciated service for the community. We want to thank to them. FakeFilter has different approach: we do actively monitor all known providers and get their domains almost realtime and distribute daily. All our system is automated. Your help is still required; if you submit us new providers, we will write services to watch those providers REALTIME. Users do have rights to fake their emails, but also service providers do have the right to know about this fact. We have nothing against free/fake services, this service aims to be automated and reliable.

Stats

Daily Coverage

Amount of coverage, actions against all known Disposable Email Providers per Day Monthly Coverage

Monthly Unique Disposable Domains

Number of unique known validated Disposable Domains in Total at given Month Monthly Disposable Domains

Success Rate Charts

We monitor every disposable email provider we know about and make charts about success rate in % per day. You can access provider based success rate charts at here

Adding new Providers

Please help us to add new Providers to this list, simply create an issue with the title as providers main sitedomain, this way we can group them by domain. Your help is appreciated.

Online Formats

We have implemented a RESTful API, you can check the API at fakefilter.net. This database is aimed to serve realtime, so once we detect a new domain, this API will have it. We recommend using the Offline format as backup since we cannot guarantee the uptime.

Offline Formats

You may use one of these formats to have access to the information flow in your favorite programming language:

Markdown

Json This format supports firstseen,lastseen,randomSubdomain properties

Json v2 A fakedomain might belong to multiple providers, in this format we list their PSL (Public Suffix List) based domain and all known hostnames belonging to this PSL domain. Ths version also supports IDN domains, all domains are punycode.

Txt

Expired Domains

Our service removes domains from fakefilter (json/api/markdown/txt) after a year of inactivity. If these domains reappear, they are reinstated in our database for a minimum of 365 days. You can find the list of expired domains per provider here

Whitelist

We whitelist major well-known providers from being blocked from fakefilter, just to make sure we do not add them automatically from our system. Some providers offer @gmailcom emails, adding such domains would be painful for the community.

Javascript Interface

We have implemented npm/javascript interface for Javascript Developers as demonstration

npm i --save fakefilter

You have to make sure that this npm package is always up2date in order this static implementation to work as designed.

Offline Lookup:

const { isFakeDomain, isFakeEmail } = require('fakefilter')

console.log(isFakeDomain('domain.com'))
console.log(isFakeEmail('[email protected]'))

Online Lookup:

this version does not throw at all. You either get null (which indicates any error) or false or the object as reply

## also see examples/online.js
const { isFakeDomainOnline, isFakeEmailOnline } = require('fakefilter')

console.log(await isFakeDomainOnline('domain.com'))
console.log(await isFakeEmailOnline('[email protected]'))

Test:

node index.js