Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 1.27 KB

File metadata and controls

55 lines (40 loc) · 1.27 KB

React Blackjack

Image of React Black Jack

What is it?

This is a clasic React.JS version of the popular Casino game of Blackjack. The app is still in delopment.

Can I play an online demo?

Yes just visit link to My Demo

What was used to make it?

The following technologies were used to make this game: -React.js -Mongo d -Material-UI for React

What if I want to clone it and add my own code?

  • First download and install Mongo Database
  • Then open a terminal window and type bash
$ mongod
  • Then Clone the repository and cd into the folder

bash

$ git clone https://github.com/ryanccrawford/black-react.git

bash

$ cd black-react
  • Next run npm install. This was made using create-react-app so it should cd automatically into the client folder and download all the required npm packages

bash

$ npm install
  • Then to run make sure you are back in the root of black-react, then run this command

bash

$ npm start

TODO: Finish the dealers turn / Right now when you play, hitting the 'STAY' button will cause the game to just stop. This is because there is no code yet to eveluate the dealers turn. Will Update soon