
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
buscape-lookup
Advanced tools
This module is a simple wrapper around buscape's lomadee publisher api for node.
Full example:
var buscape = require('buscape-lookup');
buscape({keywords: 'test'})
.id('api key')
.price('120..560')
.country('BR')
.limit(5)
.done(function (err, result) {
console.log(JSON.stringify(result));
});
Limit to one result:
var buscape = require('buscape-lookup');
buscape({keywords: 'test'})
.id('api key')
.one()
.done(function (err, result) {
console.log(JSON.stringify(result));
});
Pass in keywords directly
var buscape = require('buscape-lookup');
buscape('test')
.id('api key')
.done(function (err, result) {
console.log(JSON.stringify(result));
});
Add client IP address if calling on someone else's behalf
var buscape = require('buscape-lookup');
buscape('test')
.id('api key')
.client('192.168.1.1')
.done(function (err, result) { ... })
MIT
FAQs
A wrapper around buscape's lomadee api
The npm package buscape-lookup receives a total of 1 weekly downloads. As such, buscape-lookup popularity was classified as not popular.
We found that buscape-lookup 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
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.