
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
node-hunterio
Advanced tools
Hunter.io lets you find email addresses in seconds and connect with the people that matter for your business. View the full documentation here.
Use npm to install the package:
$ npm install node-hunterio
Get every email address found on the internet using a given domain name, with sources.
const API_KEY = 'YOUR_API_KEY';
const hunterio = new Hunterio(API_KEY);
hunterio.searchDomain('hunter.io')
.then((res) => {
console.log('Domain Information: ' + res);
});
Get every email address found on the internet using a given domain name, with sources.
const API_KEY = 'YOUR_API_KEY';
const hunterio = new Hunterio(API_KEY);
const findEmailRequest = {
domain: 'jimmyjohns.com',
company: 'Jimmy Johns',
first_name: 'Alex',
last_name: 'Leventer',
full_name: 'Alex Leventer',
};
hunterio.findEmail(firstEmailRequest)
.then((res) => {
console.log('Email Information: ' + res);
});
Check if a given email address is deliverable and has been found on the internet.
const API_KEY = 'YOUR_API_KEY';
const hunterio = new Hunterio(API_KEY);
const emailVerificationRequest = {
email: 'alex@gmail.com'
};
hunterio.verifyEmail(emailVerificationRequest)
.then((res) => {
console.log('Email Verification Information: ' + res);
});
Save and manage all your leads in Hunter.
const API_KEY = 'YOUR_API_KEY';
const hunterio = new Hunterio(API_KEY);
hunterio.listLeads()
.then((res) => {
console.log('Leads: ' + res);
});
Save and manage all your leads lists in Hunter.
const API_KEY = 'YOUR_API_KEY';
const hunterio = new Hunterio(API_KEY);
hunterio.listLeadsLists()
.then((res) => {
console.log('Leads Lists: ' + res);
});
FAQs
Node.js wrapper for the Hunter.io API
The npm package node-hunterio receives a total of 44 weekly downloads. As such, node-hunterio popularity was classified as not popular.
We found that node-hunterio 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.