angular-express-seed
angular-express-seed copied to clipboard
Most middleware (like errorHandler) is no longer bundled with Express
I get this error;
Most middleware (like errorHandler) is no longer bundled with Express and must be installed seperatly. Please see https://github.com/senchalabs/connect#middleware
If it's just me then close this.
As is solved on issue #29, justinireland proposes the following: "run: npm install express-error-handler change line 9 to: errorHandler = require('express-error-handler'), change line 36 to: app.use(errorHandler());"
@adriagil It's helpful. Thanks.
@adriagil Thank you!
@adriagil Thnx a bunch!!