Skip to content

Body parser

bodyParser is a middleware allows you to retrieve the body of the request. It supports text/plain and application/json body types. Other content types, such as multipart/form-data will be ignored.

Body object can be accessed with req.body property.

import { bodyParser } from '@shelepuginivan/lunatic'
app.use(bodyParser)
app.post('/', (req, res) => {
console.log(req.body)
res.status(200).json({ message: 'received body' })
})
app.listen(8000)