I noticed that you had `app.use(app.router)`. However, this will give traceback when logging errors: ``` Error: 'app.router' is deprecated! ``` I think you can use `express.Router();` instead
I noticed that you had
app.use(app.router). However, this will give traceback when logging errors:I think you can use
express.Router();instead