Skip to content

Instantly share code, notes, and snippets.

@deanhume
Created March 30, 2017 08:30
Show Gist options
  • Save deanhume/6cb649cd266092c81df28652d35348f6 to your computer and use it in GitHub Desktop.
Save deanhume/6cb649cd266092c81df28652d35348f6 to your computer and use it in GitHub Desktop.
Server Timings - Node Express
const app = express();
const timings = require('server-timings');
app.use(timings.start('routing'));
app.use('/', require('./routes/home.js'));
app.use(timings.end('routing'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment