
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Node library for querying the Clearbit business intelligence APIs. Currently supports:
$ npm install clearbit
var clearbit = require('clearbit')('api_key');
// or
var Client = require('clearbit').Client;
var clearbit = new Client({key: 'api_key'});
Person.find(options)
-> Promise
email
String: The email address to look up (required)webhook_id
String: Custom identifier for the webhook requestsubscribe
Boolean: Set to true
to subscribe to the changescompany
Boolean: Set to true
to include a company lookup on the email’s domain name in the responsestream
Boolean: Set to true
to use the streaming API instead of webhooksvar Person = clearbit.Person;
Person.find({email: 'email@domain.com'})
.then(function (person) {
if (!person.pending()) {
console.log('Name: ', person.name.fullName);
}
})
.catch(Person.NotFoundError, function (err) {
console.log(err); // Person could not be found
})
.catch(function (err) {
console.log('Bad/invalid request, unauthorized, Clearbit error, or failed request');
});
person.pending()
-> Boolean
If Clearbit responds with a 202
status indicating that lookup has been queued, person.pending
returns true
.
Company.find(options)
-> Promise
domain
String: The company domain to look up (required)webhook_id
String: Custom identifier for the webhook requeststream
Boolean: Set to true
to use the streaming API instead of webhooksvar Company = clearbit.Company;
Company.find({domain: 'www.uber.com'})
.then(function (company) {
if (!company.pending()) {
console.log('Name: ', company.name);
}
})
.catch(Company.NotFoundError, function (err) {
console.log(err); // Company could not be found
})
.catch(function (err) {
console.log('Bad/invalid request, unauthorized, Clearbit error, or failed request');
});
company.pending()
-> Boolean
If Clearbit responds with a 202
status indicating that lookup has been queued, company.pending
returns true
.
Lookups return Bluebird promises. Any status code >=400 will trigger an error, including lookups than do not return a result. You can easily filter out unknown records from true errors using Bluebird's error class matching:
Person.find({email: 'notfound@example.com'})
.catch(Person.NotFoundError, function () {
// handle an unknown record
})
.catch(function () {
// handle other errors
});
If you really want to use node-style callbacks, use Bluebird's nodeify method:
Person.find({email: 'email@domain.com'}).nodeify(function (err, person) {
if (err) {
// handle
}
else {
// person
}
});
FAQs
Client for Clearbit.co business intelligence APIs
The npm package clearbit receives a total of 17,210 weekly downloads. As such, clearbit popularity was classified as popular.
We found that clearbit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.