Blackjack-deck

Building a Blackjack game

Learn how to use the libraries and create a Blackjack game of it

Introduction

Start by bootstraping a new React application. You may create your application however you want. We will provide an example with NextJS below:

npx create next-app@latest blackjack-app --yes

Setup libraries

Once the installation of your app is done, we can proceed to install the required libraries.

cd blackjack-app
npm install @blackjack-deck/core @blackjack-deck/react @blackjack-deck/icons

On this page