
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
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 2 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.