-
Clone the code
-
Make sure you have installed node
-
npm install
- will install all packages -
run the code using the start script
npm start
http://connect4gamenodejs.herokuapp.com
- start the game
curl -L -X POST 'http://connect4gamenodejs.herokuapp.com/connect4/action' \
-H 'Content-Type: application/json' \
--data-raw '{
"action": "START"
}'
- fill a particular column row with coin by passing the column number
curl -L -X POST 'http://connect4gamenodejs.herokuapp.com/connect4/action' \
-H 'Content-Type: application/json' \
--data-raw '{
"column": 1
}'