Tiny alternative for the popular body-parser package. Zero dependencies vs 21. Just handles JSON for now.
npm i miniparser
const bodyParser = require('miniparser')
require('polka')()
.use(bodyParser()) // you can also use bodyParser.json()
.get('/', (req, res) => {
console.log(req.body)
res.end()
})
If the JSON body is misformatted or unable to be parsed, an empty JSON object will be returned ({}
)