You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Nathan Steel fb44865a5e Various changes from a few months back
Pushing so they're not lost, as may need for
reference on the 3rd/4th restart of developing this.

Next time I'm taking it slow, and less hacky so it's easy
to jump in when I take prolonged breaks from this due to
work burnout, etc...
7 months ago
db Various changes from a few months back 7 months ago
public Various changes from a few months back 7 months ago
.gitignore Various changes from a few months back 7 months ago
README.md Update README 1 year ago
cardGen.js Various changes from a few months back 7 months ago
components.js Various changes from a few months back 7 months ago
database.js Various changes from a few months back 7 months ago
gameHelper.js Various changes from a few months back 7 months ago
gameMod.js Various changes from a few months back 7 months ago
package.json Add mysql module 1 year ago
roomMod.js Various changes from a few months back 7 months ago
rooms.js Various changes from a few months back 7 months ago
server.js Various changes from a few months back 7 months ago

README.md

Card Game

Technology

  • node.js
  • express.js
  • socketIO
  • HTML5 (Canvas)

Install

sudo apt install npm git pull <this-repo> npm install express --save

socketio, mysql

Run

node server.js

Access through

http://localhost:3000

Development

BACKEND/SERVER DEVELOPMENT ONLY

To prevent the exhausting task of restarting the server on change install and run with nodemon, it'll handle server restart each time a js file is saved (this does also restart for front-end)

npm install -g nodemon

Run with

nodemon --inspect server.js