https://github.com/bozzelliandrea/js-blackjack
Javascript blackjack game
https://github.com/bozzelliandrea/js-blackjack
Last synced: 8 months ago
JSON representation
Javascript blackjack game
- Host: GitHub
- URL: https://github.com/bozzelliandrea/js-blackjack
- Owner: bozzelliandrea
- Created: 2023-01-02T21:09:30.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-08T20:19:11.000Z (almost 3 years ago)
- Last Synced: 2024-12-28T06:27:55.032Z (10 months ago)
- Language: JavaScript
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :diamonds: :spades: BlackJack :clubs: :heart:
A simple blackjack game written in javascript## Installation
*before run the game, it requires nodejs installed on your machine*
use the following [guide](https://github.com/nodesource/distributions/blob/master/README.md) to set up your local environment
## Run LocallyClone the project
```bash
git clone https://github.com/bozzelliandrea/js-blackjack.git
```Go to the project directory
```bash
cd js-blackjack
```Install dependencies
```bash
npm install
```Start the script
```bash
npm start
```## Running Tests
There are some tests made with jest, to run the test suite locally execute the command
```bash
npm test
```