
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
website-contacts-extractor
Advanced tools
Website Contacts Extractor allows you to easily extract contact information (emails and social media links) from any website.
The Website Contacts Extractor is an API client for the Website Contacts Extractor that allows you to easily extract contact information (emails and social media links) from any website. It gets these details from the "Contact Us" pages of websites.
Install the package using npm:
npm install website-contacts-extractor
To use the library, you need to import the Api class, create an instance with your API key, and then call the getContacts method.
import Api from 'website-contacts-extractor';
async function main() {
// Create an instance of the API with your API key
const api = new Api({
apiKey: 'YOUR_API_KEY',
createResponseFiles: true, // Optional: saves responses to files for debugging, remove this in production.
});
const contacts = await api.getContacts('https://www.apple.com/');
}
main();
The Api constructor accepts the following parameters:
apiKey (string, required): Your API key for the service.createResponseFiles (boolean, optional, default: false): If set to true, the library will save the JSON response from the API to a file in the output/responses directory. Useful for debugging. Remove this parameter in production.This project is licensed under the Apache-2.0 License. See the LICENSE file for details.
FAQs
Website Contacts Extractor allows you to easily extract contact information (emails and social media links) from any website.
We found that website-contacts-extractor demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.