## Setup Express We are using [Express](https://expressjs.com/) since it's a popular way to connect everything in your app. However, these steps are intended for setting up your preferred framework. If your framework is already in place, skip this step. 1. Install Express in your app's directory. ```shell $ npm install express ``` 1. Open up the app in your favorite IDE and navigate to your app. 2. Double check that Express and Node Fetch were added to the `package.json` dependencies list. ```json { "dependencies": { "express": "^4.17.3" "node-fetch": "^3.2.3" } } ```