Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
deckofcardsapi-client
Advanced tools
Promise-based NodeJS Client for https://deckofcardsapi.com. Supporting default instance (https://deckofcardsapi.com) or a custom one.
Here is a basic exemple, for more detailed informations, see wiki.
const DeckBuilder = require("deckofcardsapi-client");
try {
//Create a new shuffled deck of 52 cards
const deck = await new DeckBuilder().standardDeck();
//Draw 5 cards from deck
const hand = await deck.draw(5);
//Shuffle or reshuffle the deck
await deck.shuffle();
//Create a new pile nammed "discard"
const discardPile = await deck.getPile("discard");
//Add hand to discard pile
await discardPile.add(hand);
//List pile content
console.log(await discardPile.list());
} catch (error) {
console.log(error);
}
In order to use your custom instance, include this code.
const api = require("deckofcardsapi-client").api;
api.sethost("https://exemple.com");
FAQs
DeckOfCards API wrapper for NodeJS
The npm package deckofcardsapi-client receives a total of 1 weekly downloads. As such, deckofcardsapi-client popularity was classified as not popular.
We found that deckofcardsapi-client 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.