Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
email-hunter
Advanced tools
email-hunter
is a tiny node wrapper around Email Hunter API (https://emailhunter.co/)
The module is distributed through npm (node package manager) and can be installed using:
npm install email-hunter --save
The --save
automatically adds the module to your package.json
definition.
You require the module as any other node.js module:
var EmailHunter = require('email-hunter');
Then create a new instance with your API key
var em = new EmailHunter('YOUR API KEY');
You can also use that directly
var em = require('email-hunter')('YOUR API KEY');
Note: Your secret API key, you can generate it in your dashboard from https://emailhunter.co
Returns all the email addresses found using one given domain name, with our sources.
em.searchByDomain('stripe.com').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Returns all the email addresses found using one given company name, with our sources.
em.searchByCompany('Stripe').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Allows you to verify the deliverability of an email address.
em.verify('kessiler@hotmail.com').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Allows you to know how many email addresses we have for one domain.
em.count('stripe.com').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Generates the most likely email address from a domain name, a first name and a last name.
em.generateByDomain('stripe.com', 'kessiler', 'rodrigues').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Generates the most likely email address from a company name, a first name and a last name.
em.generateByCompany('Stripe', 'kessiler', 'rodrigues').then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Allows you to get information regarding your Email Hunter account at any time.
em.account().then(function(result) {
console.log(result);
}).catch(function(err) {
console.log(err);
});
Note: You can also use callbacks, whether you prefer. :)
The email-hunter is released under the MIT License.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
A tiny nodejs wrapper around Email Hunter API
The npm package email-hunter receives a total of 12 weekly downloads. As such, email-hunter popularity was classified as not popular.
We found that email-hunter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.