First of all, i must warn you, English is not my native language. Therefore i apologize for possible stupid mistakes in my notes =)
- Get some exp in web development;
- Get some exp in development workflow;
- Start using most important development tools, like git or babel for js developers;
- Get litle exp in nonSQL DBs.
It's micro web app based on Jquery client and nodejs on server side.
-
- allow to generate random cards hands and display it on main page
- allow to choose set of desired combinations for generating
- display history of operations
-
- get requests from client and then checks cards combinations. There will be a separate module for handling hand combinations
- http server will be based on Express js framework
- and of course will be DB, i think it will be MongoDB, because it's more or less simple and fast for understanding
- index.js
- package.json
./server/
- server.js
- checkerCore.js
./client/
- index.html
- scripts/
- app.js
- jquery.js
- styles/
- style.css
- normalize.css
- images/*
At this time, the application can already be started. But it looks very dampy. However, the main functions already implemented.
- Run
git clone https://github.com/matvey-b/pokerChecker.git
for download sourcecode - In repository dir run
npm install
for installing dependencies - Run
npm start
for start web server - Go to
http://localhost:3000
for access to web app.