First let's open a terminal and cd into the directory we created in the first recipe,
$ cd micro
Next we'll generate the application skeleton using the express command-line tool (which we installed with express-generator), and then use standard --fix to conform the code to our lint rules:
$ express --view=ejs ./webapp$ cd webapp$ standard --fix
This will create a skeletal web application using EJS templates in a new directory called webapp.
We'll also create a few files, and add an additional dependency:
$ touch routes/add.js ...