As mentioned, pretending there is a backend to our Create React App project requires very little effort and gets us back into development incredibly quickly. For us to take advantage of this, we'll need to first set up a "proxy" in our package.json file. A proxy is a way for us to tell Create React App that any requests we make should go to this other server when it may look like we're making requests locally, instead. Let's start with configuring our project and then move on to implementing this further:
"proxy": "http://localhost:4000"
We'll also want to add a command to run and execute our server that we can easily run via yarn, so we'll also need to update the "scripts" section of package.json to include a new ...