Socket
Socket
Sign inDemoInstall

emailrep

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    emailrep

Node.js library for the EmailRep API


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
2.81 kB
Created
Weekly downloads
 

Readme

Source

emailrep

Node.js library for the EmailRep API

Installation

npm i emailrep

Usage

Example:

const emailrep = require('emailrep')

getEmailRep('bill@microsoft.com')
    .then(result => {
        if (result.success) {
            console.log(result.details)
        } else {
            console.log(result.error))
        }
    })
    .catch(error => console.error('Error:', error))

Output:

{
  blacklisted: false,
  malicious_activity: false,
  malicious_activity_recent: false,
  credentials_leaked: true,
  credentials_leaked_recent: false,
  data_breach: true,
  first_seen: '07/01/2008',
  last_seen: '01/16/2024',
  domain_exists: true,
  domain_reputation: 'high',
  new_domain: false,
  days_since_domain_creation: 12006,
  suspicious_tld: false,
  spam: false,
  free_provider: false,
  disposable: false,
  deliverable: true,
  accept_all: false,
  valid_mx: true,
  primary_mx: 'microsoft-com.mail.protection.outlook.com',
  spoofable: false,
  spf_strict: true,
  dmarc_enforced: true,
  profiles: [ 'linkedin', 'twitter' ]
}

Keywords

FAQs

Last updated on 16 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc