ExpressJS next('route') is breaking my route
Im testing the following lines of code. router.get('/testAPI', function(req, res, next){ console.log('middleware 1'); next(); }, function(req, res, next) { console.log('middleware 2')...