Playable Connect 4 Game built in Javascript.
- All Connect 4 rules implemented
- Ability for users to enter player names
- Game records kept and displayed via Recent Games and Leaderboard dashboards
First install dependencies:
npm install
To setup the MySQL database (in mySQL shell):
drop database if exists connect4; create database connect4; use connect4;
To create a production build and start server:
npm run build-prod
npm start
To create a development build and start server:
npm run build-dev
npm run server-dev
Navigate to http://localhost:3000
in your browser