Skip to content

Ravit436/connect4game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Connect 4 Game

Steps for running code locally

  • Clone the code

  • Make sure you have installed node

  • npm install - will install all packages

  • run the code using the start script npm start

Hosted Link

http://connect4gamenodejs.herokuapp.com

Following are the curls:

  1. start the game
curl -L -X POST 'http://connect4gamenodejs.herokuapp.com/connect4/action' \
-H 'Content-Type: application/json' \
--data-raw '{
    "action": "START" 
}'
  1. 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 
}'

About

connect 4 game using nodejs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published