Skip to content

Connecting Client to Server

We developed both React.js (client) and Node.js (server) applications but they still do not communicate with each other.

We need to make sure our client application shows data from backend and updates the database based on users actions.

To do that, we will slightly update our React.js application to make API calls to our server application for certain functionalities: getting the list of all todo items, adding a new item, deleting an item or toggling the done status of an item.