express-debug
express-debug copied to clipboard
Shouldn't `require('express-debug')(app, {/* settings */});` be placed after the application logic to avoid `cannot find stack` error?
I put require('express-debug')(app, {});
before the application logic and it gave me the Error: Cannot find stack
error. This SO solution helped me and it places that line as far down as possible. I suggest you guys edit the README.
+1
I had the same problem and placing require('express-debug')(app, {});
after logic helped too
Same here.