Getting ready

We'll create a folder called app, initialize it as a package, and install express:

$ mkdir app
$ cd app
$ npm init -y
$ npm install express

We don't need to add any of our own code since we're only checking dependencies.