Node Express Dynamic Route and Error Manipler
app.use(function (req, res, next) {
res.status(404).send("Sorry can't find that!")
})
Defeated Dog
app.use(function (req, res, next) {
res.status(404).send("Sorry can't find that!")
})