What you build
You will create the smallest useful backend for this track: one Express app with one route.
The route will answer GET / with JSON. This is the first proof that your API runs on your laptop and can later be shared in a public repo.
Remember this
An Express API is a Node app that listens for HTTP requests and sends responses.
A route connects one HTTP method and one path to one handler function. For example, GET / runs when someone opens the root URL.