Giter VIP home page Giter VIP logo

card-dealer's Introduction

Card Dealer

NPM Package build Coverage Status CodeFactor npm latest version Known Vulnerabilities Bundle Size License

A robust card-dealing JavaScript Class written in TypeScript

Table of Contents

Features

  • Use any card deck with the Dealer class
  • Shuffle deck into a random order
  • Draw cards for use
  • Discard cards without revealing them
  • Cut the deck
  • Included Decks
    • Standard 52 Playing Cards
    • Uno

Installation

npm

$ npm install card-dealer --save

yarn

$ yarn add card-dealer

Usage

TypeScript

import { Dealer, standardDeck } from "card-dealer";

const dealer = new Dealer(standardDeck);

JavaScript

const Dealer = require("card-dealer/dealer");
const standardDeck = require("card-dealer/decks/standard");

const dealer = new cardDealer.Dealer(standardDeck);

API

Dealer Class

Dealer() takes a deck of cards to use for a game & places it on the draw pile.

const dealer = new Dealer(standardDeck);

Shuffle

Randomizes the dealer's draw pile order using the Fisher-Yates shuffle algorithm.

dealer.shuffle(); // Deck is now randomized 

Cut Deck

Cuts the deck at the specified position in the deck, moving the bottom half to the top of the draw pile. If no value is passed to the method, Dealer will place the top card at the bottom of the deck.

// Top card is now placed at the bottom of the deck
dealer.cut();

// Top 13 cards are now placed at the bottom of the deck
dealer.cut(13); 

Draw

Returns the number of cards requested from the draw pile for use in the game. If no value is passed to the method, Dealer will draw one card.

// Returns the top card from the deck
dealer.draw();

// Returns the top 5 cards from the deck
dealer.draw(5); 

Discard

Moves the number of cards specified from the draw pile to the discard pile without revealing the value to the game. If no value is passed to the method, Dealer will discard only the top card in the pile.

// The first card in the draw pile is discarded
dealer.discard();

// The first 3 cards in the draw pile are discarded
dealer.discard(3); 

Reset Game

Resets the draw & discard piles to the default deck position.

dealer.reset();

Remaining Cards

Returns a count for the remaining cards in the draw pile.

dealer.remainingCards();

License

Card-dealer is offered under the MIT license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.