npm install body-parser-bsonNode.js BSON body parsing middleware
Parse incoming request bodies with Content-Type: application/bson in a middleware before your handlers, available under the req.body property.
This module provides the following parsers:
## Installation
``sh`
$ npm install body-parser-bson
`js`
var bodyParserBson = require('body-parser-bson')
Returns middleware that only parses bson.
A new body object containing the parsed data is populated on the requestreq.body`).
object after the middleware (i.e.