Skip to content

Instantly share code, notes, and snippets.

@FWeinb
Forked from Marak/echoHttpRequest.js
Last active October 6, 2021 13:26
Show Gist options
  • Save FWeinb/2df9f325309fa1d5482e to your computer and use it in GitHub Desktop.
Save FWeinb/2df9f325309fa1d5482e to your computer and use it in GitHub Desktop.
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);
hook.debug(hook.env);
hook.res.end(JSON.stringify(hook.params, true, 2));
};
// Remark: Using a schema is *completely* optional!
// You *can* pass abritrary parameters without using a schema
// For Example: curl http://echo.hook.io?foo=bar
module['exports'].schema = {
"param1": {
"type": "string",
"default": "foo"
},
"param2": {
"type": "string",
"default": "bar"
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment