Skip to content

Instantly share code, notes, and snippets.

@palmerabollo
Created December 15, 2015 11:39
Show Gist options
  • Save palmerabollo/78964728d30edd22bacc to your computer and use it in GitHub Desktop.
Save palmerabollo/78964728d30edd22bacc to your computer and use it in GitHub Desktop.
module['exports'] = function echoHttp (hook) {
console.log(hook.params);
console.log(hook.req.path);
console.log(hook.req.method);
console.log(hook.env);
hook.res.end(JSON.stringify(hook.params, true, 2));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment