
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
pantry-cloud
Advanced tools
NodeJS package for Pantry
You can get pantry-cloud via npm.
npm install pantry-cloud
import { Pantry } from 'pantry-cloud';
const pantry = new Pantry('<PANTRY_ID>');
const details = await pantry.getPantry();
/*
* Logs:
* {
* name: '...',
* descriptions: '...',
* errors: [...],
* notifications: true,
* percentFull: 0,
* baskets: [...]
* }
*/
console.log(details);
// The `postBasket` async method creates a new basket or replaces an existing one.
await pantry.postBasket('testBasket');
// Then `putBasket` async method updates the contents of a given basket.
const contentOfTestBasket = await pantry.putBasket('testBasket', { content: 'test' });
/*
* Logs:
* {
* content: 'test'
* }
*/
console.log(contentOfTestBasket);
// The `getBasket` async method returns with the contents of the given basket.
const testBasket = await pantry.getBasket('testBasket');
/*
* Logs:
* {
* content: 'test'
* }
*/
console.log(testBasket);
// The `deleteBasket` async method deletes the entire baskte.
await pantry.deleteBasket('testBasket');
See in the documentation.
FAQs
NodeJS package for Pantry
We found that pantry-cloud 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.