If you are new to middleware in Express check out the Overview in the Remarks section.
First, we are going to setup a simple Hello World app that will be referenced and added to during the examples.
var express = require('express');
var app = express();
app.get('/', function(req, res) {
r...