in the default app.js generated by express.js, there is a following line:
...
app.use(app.router);
...
I am confused by this line of code, because 1) I couldn't find app has a property with the name "router" on express api doc. 2) "app.router" is not mentioned/defined in the code.
There is a one property called "app.routes". it is not the same thing, right?
Please help me explain what is app.router and where it comes from. Thank you!