billyjacksone / crashgame

Online Crash Gambling Game Web App Built with the MERN Stack

Home Page:https://effulgent-travesseiro-c05997.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crash Gambling Simulator

A recreation of the popular online casino game "crash" with accurate casino odds.

showcase

Technologies Used

  • React.js - JS framework used to create the frontend.
  • Express.js - The backend server environment and serves as an API.
  • Node.js - JS environment that executes JS outside of the browser.
  • Socket.io - Allows communication between the server and client in real time.
  • MongoDB - NoSQL database used to store all user and server information.
  • Passport.js - Middleware used to authenticate and authorize users. Handles logins and registrations.
  • bcrypt.js - Secures user passwords by hashing all passwords before storing in database.
  • Chart.js - Create visualizations of data through charts and graphs like line graphs.
  • HTML
  • CSS

Features

  • Login system - Users must log in or create an account to place bets.
  • Betting system - Users wager their balance before the round begins. A multiplier counts up from 1.00 and users can cash out at any time, multiplying their bet amount by the current multiplier. The multiplier will stop, or crash, at a randomly generated value, and users who have not cashed out yet will lose their entire bet.
  • Accurate Gambling Odds - Every crash value is generated using the same algorithms real casinos use, including a 3% house edge.
  • Live Bet Tracker - Users can see other users betting live. When a user places a bet, their username and bet amount are added to a live table. When the user cashes out, their cash out multiplier and profit are also added.
  • Game History - Displays the crash values of the last 25 games played along with the streak of games with crash values above or below 2.00.
  • Chat - Users who are logged in can send messages to other users through chat
  • Live Line Graph - Visualization of the current multiplier with respect to time.

Installation

// Clone the repository
$ git clone https://github.com/wbrandon25/Online-Crash-Gambling-Simulator

// Navigate to directory
$ cd ./Online-Crash-Gambling-Simulator

Setup and Run Client

// Navigate to client directory 
$ cd ./client

// install packages
$ npm i 

// start client (localhost:3000)
$ npm start

// For running in production
$ npm run build
$ npm start

Setup and Run Server

// Navigate to server directory 
$ cd ./backend

// install packages
$ npm i 

// install nodemon for development
$ npm i -D nodemon

// start node server (localhost:4000) and socket.io server (localhost:3001) 
$ npm start 

Environment Variables

  • MONGOOSE_DB_LINK - URL to MongoDB server
  • PASSPORT_SECRET - Secret for Passport.js authorization and authentication

About

Online Crash Gambling Game Web App Built with the MERN Stack

https://effulgent-travesseiro-c05997.netlify.app


Languages

Language:JavaScript 78.8%Language:CSS 18.5%Language:HTML 2.7%