Skip to content

Instantly share code, notes, and snippets.

@Marak
Last active May 31, 2021 20:25
Show Gist options
  • Save Marak/357645b8a17daeb17458 to your computer and use it in GitHub Desktop.
Save Marak/357645b8a17daeb17458 to your computer and use it in GitHub Desktop.
Echo HTTP requests
module['exports'] = function echoHttp (hook) {
console.log("Console messages are sent to /logs");
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