UNPKG

node-api-template

Version:
9 lines (7 loc) 204 B
const notFound = (req, res, next) => { res.status(404).json({ status: 'fail', message: `🔍 Can't find ${req.originalUrl} on this server!`, }); }; module.exports = notFound;