
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.
node-pinboard
Advanced tools
A Node.js wrapper for the Pinboard API.
npm install node-pinboard
node-pinboard follows the Pinboard v1 API with token auth (token can be found on settings/password).
Under the hood, node-pinboard uses node-fetch, so API call errors will follow that library's patterns.
npm test
To determine code coverage:
npm run coverage
const Pinboard = require('node-pinboard').default;
const api_token = 'user:NNNNNN';
const pinboard = new Pinboard(api_token);
const options = {
url: 'https://github.com/maxmechanic/node-pinboard',
description: 'node pinboard',
tags: 'github,node-pinboard,test',
toread: 'yes'
};
pinboard.add(options, (err, res) => {
console.log(res);
//{ result_code: 'done' }
});
pinboard.get({ tag: 'node-pinboard' }, (err, res) => {
console.log(res);
//date: date,
//user: 'user',
//posts:
//[ { href: 'https://github.com/maxmechanic/node-pinboard',
//description: 'node pinboard',
//extended: '',
//meta: 'meta',
//hash: 'hash',
//time: 'time',
//shared: 'no',
//toread: 'yes',
//tags: 'git node-pinboard test' } ] }
});
// promise version
pinboard.get({ tag: 'node-pinboard' }).then(res => {
console.log(res);
});
FAQs
A Node.js wrapper for the Pinboard API.
We found that node-pinboard 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.