dragonrend-json-body-parser

Dragonrend Handler for parsing JSON request body

Usage no npm install needed!

<script type="module">
  import dragonrendJsonBodyParser from 'https://cdn.skypack.dev/dragonrend-json-body-parser';
</script>

README

Build Status GitHub license

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