New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pantry-cloud

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

pantry-cloud

NodeJS package for Pantry

unpublished
latest
Source
npmnpm
Version
0.1.8
Version published
Maintainers
1
Created
Source

pantry-cloud

NodeJS package for Pantry

Release quality gate coverage

Install

You can get pantry-cloud via npm.

npm install pantry-cloud

Usage

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');

API

See in the documentation.

Resources

Keywords

pantry

FAQs

Package last updated on 26 Feb 2022

Did you know?

Socket

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.

Install

Related posts