🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@everapi/emailvalidation-js

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
e

@everapi/emailvalidation-js

A JavaScript wrapper for the emailvalidation.io API

1.0.6
latest
65

Supply Chain Security

100

Vulnerability

79

Quality

76

Maintenance

100

License

Network access

Supply chain risk

This module accesses the network.

Found 1 instance in 1 package

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Version published
Weekly downloads
6
100%
Maintainers
2
Weekly downloads
 
Created
Issues
0

emailvalidation-js: Email Validation & Verification API for JavaScript

This package is a JavaScript wrapper for emailvalidation.io that aims to make the usage of the API as easy as possible in your project. Emailvalidation.io offers a graphical user interface for manual bulk email validation, but also provides a REST API for full developer flexibility. Additionally, emailvalidation.io provides plenty of one-click integrations with common email marketing providers.

Installation

npm

npm install --save @everapi/emailvalidation-js

yarn

yarn add @everapi/emailvalidation-js

Import

import Emailvalidation from '@everapi/emailvalidation-js';

or use it directly in a Browser:

<script src="path/to/emailvalidation-js/index.js"></script>

Usage

Initialize the API with your API Key (get one for free at emailvalidation.io):

const emailvalidation = new Emailvalidation('YOUR-API-KEY');

Afterwards you can make calls to the API like this:

emailvalidation.info('john@doe.com', {
        catch_all: 1
    }).then(response => {
        console.log(response);
    });

Find out more about our endpoints, parameters and response data structure in the docs

License

The MIT License (MIT). Please see License File for more information.

FAQs

Package last updated on 17 May 2023

Did you know?

Socket

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