Skip to content

Not Found

notFound is a small middleware that returns 404 Not Found status code if the request did not match all routes.

import { notFound } from '@shelepuginivan/lunatic'
app.post('/', (req, res) => {
res.status(200).json({ message: 'this IS found' })
})
app.use(notFound) // should be the last to check all routes before sending 404
app.listen(8000)

By default, if no route matched the request, server will respond with 501 Not Implemented status. Use this middleware to override this behavior.