A story from the developer
It is a demo game project about integreting a Python Server with a Node jS server and showing their output using the React JS frontend. I used flask to built the python backend and hosed it online. Simplifying thing I can say that , this works something like this. First of all frontend send request to the node js server's backend. From that node hs server we forward that request to the python flask backend. After hitting the '/game-start' end point we get a secret word and word to display as display word in the frontend. Then our player has to guess a single word at one time, than they can see, if their word is correct or not. Players get 5 retry chance , after that the game will be over. And If the player can complete this game guessing all the letter correctly in secret word, they will see a congratulation message. I did not use any state management service like context or redux but for only general purpose I used local sorage to store game info.