require('bluebird'); 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" } }; // The Theme and Presenter will default to the following files if not set // see: http://hook.io/themes module['exports'].theme = "http://hook.io/themes/debug/index.html"; module['exports'].presenter = "http://hook.io/themes/debug/index.js";