
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
fullcontact.js
Advanced tools
An effortless interface for FullContact, using node-request.
In terminal:
npm install fullcontact.js
In your JavaScript:
var FullContact = require('fullcontact.js')
, fc = new FullContact('your_api_key');
function your_callback(response) {
// handle returned data
}
fc.person({email: 'garbados@gmail.com'}, your_callback);
The response param given to your callback is a JavaScript object built by parsing the JSON returned by FullContact. So, a simple callback might be:
function simple_callback(response) {
console.log(response.status); // prints the response code your call returned.
}
Check out FullContact's documentation here.
To run the test suite, then do this after installing the library:
npm test fullcontact.js your_api_key
If you entered a valid API key as a command-line argument, the tests should (as of this writing) pass. They pass silently, so if you run the tests and nothing prints, you're good.
FAQs
Simple interface for FullContact's API, using node-request.
We found that fullcontact.js 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.