Skip to content

Instantly share code, notes, and snippets.

  • 🎨 :art when improving the format/structure of the code
  • 🚀 :rocket when improving performance
  • ✏️ :pencil2 when writing docs
  • 💡 :bulb new idea
  • 🚧 :construction work in progress
  • ➕ :heavy_plus_sign when adding feature
  • ➖ :heavy_minus_sign when removing feature
  • 🔈 :speaker when adding logging
  • 🔇 :mute when reducing logging
  • 🐛 :bug when fixing a bug
@nobuhito
nobuhito / echoHttpRequest.js
Last active August 29, 2015 14:23 — forked from Marak/echoHttpRequest.js
Echo HTTP requests
module['exports'] = function echoHttp (hook) {
hook.debug("Debug messages are sent to the debug console");
hook.debug(hook.params);
hook.debug(hook.req.path);
hook.debug(hook.req.method);