dragonrend-json-body-parser
v0.4.2
Published
Dragonrend Handler for parsing JSON request body
Downloads
6
Maintainers
Readme
Dragonrend JSON Body Parser
Installation
$ npm install dragonrend-json-body-parser
Example
const { Dragonrend } = require('dragonrend')
const jsonBodyParser = require('dragonrend-json-body-parser')
const app = new Dragonrend()
jsonBodyParser(app)
app.post((ctx) => {
// Parsed Request Body in ctx.request.body
const { body } = ctx.request
// Do something with Request's JSON body
})
app.toServer().listen(8080)
Author
Egor Repnikov - GitHub
License
This project is licensed under the MIT License - see the LICENSE file for details