inakiabt
3/10/2015 - 3:14 AM

Echo HTTP requests

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));

};

module['exports'].schema = {
  "param1": {
    "type": "string"
  },
  "param2": {
    "type": "string"
  }
};