
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
An easy-to-use Node.JS wrapper for version 3 of the imgur API.
npm install --save imgur-node
// Get album information using a Client.
const Imgur = require('imgur-node');
const client = new Imgur.Client('<CLIENT_ID>');
client.album.get('hlF1z', (err, res) => {
if (err) console.error(err);
console.log(res);
});
// Get album information without using a Client.
const imgur = require('imgur-node');
imgur.album.get('<CLIENT_ID>', 'hlF1z', (err, res) => {
if (err) console.error(err);
console.log(res);
});
// Get album information using request().
const imgur = require('imgur-node');
let options = {
clientID: '<CLIENT_ID>',
method: 'GET',
path: '/album/hlF1z'
};
imgur.request(options, (err, res) => {
if (err) console.error(err);
console.log(res);
});
This project uses GPL-3.0. For more information, click here.
FAQs
An easy-to-use wrapper for version 3 of the imgur API.
The npm package imgur-node receives a total of 1 weekly downloads. As such, imgur-node popularity was classified as not popular.
We found that imgur-node 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 MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.