
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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 0 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.