1Startup vs Request
You should establish your database connection ONCE when the Node server starts up (outside of your route handlers). Do NOT call 'mongoose.connect()' inside an Express route, or you will create a new network connection every time a user refreshes the page, instantly crashing your database.
