I have the root route and it works fine. I also have a another route 127.0.0.1:3000/dashboard if I just type that url into the address bar I get this error:
Cannot GET /
Route app.get('/index/dashboard', routes.dashboard); refers to http://hostname/index/dashboard whereas when('/dashboard', { ... }) refers to http://hostname/dashboard.
app.get('/index/dashboard', routes.dashboard);
http://hostname/index/dashboard
when('/dashboard', { ... })
http://hostname/dashboard
You should correct the route: app.get('/dashboard', routes.dashboard);
app.get('/dashboard', routes.dashboard);