express-debug
express-debug copied to clipboard
Debug toolbar middleware for developing applications in express (node.js)
I'm using 'express-resource-new' which has the feature to define some middleware to be executed before each REST function. I haven't dove too deep but when I add more than 1...
Would love to use this tool, but for some reason the debug panels do not get rendered. I do get the standalone site, but this doesn't debug requests. I've tested...
Hi, I've added a small panel that dumps my mongo queries (not really exportable at the moment), and Im planning to do another that can hold messages in the type...
Duplication: Assign the same route function to both get and post. app.get('/', routes.landing); app.post('/', routes.landing); Result: get route will be profiled, post route will not.