![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
koa-json-body
Advanced tools
Single-purpose koa middleware to parse valid JSON request bodies and nothing else.
A single-purpose koa middleware to only parse JSON request bodies and nothing else.
By default, this libarary parses all valid JSON bodies on POST
, PUT
, and PATCH
requests, and assigns the value to ctx.request.body
.
If there is a JSON parsing error, or if the request is not of valid type, ctx.request.body
is not set, and will be undefined
. If the JSON request payload is too large (by default, the limit is 1mb
), a 413 Payload Too Large
error will be thrown.
To ensure ctx.request.body
contains an empty object {}
(rather than undefined
) on missing/invalid payloads, you can set the fallback
option to true
.
yarn add koa-json-body
or via npm:
npm install koa-json-body --save
fallback
- when set to true
, ctx.request.body
will always contain {}
upon missing or invalid payloads. (default: false
)limit
- number or string representing the request size limit (default: 1mb
)strict
- when set to true
, koa-json-body will only accept arrays and objects. (default: true
)Additional options available via co-body.
On a every route:
const body = require('koa-json-body')
app.use(body({ limit: '10kb', fallback: true }))
app.use((ctx, next) => {
console.log(ctx.request.body)
})
On a per-route basis (this example uses koa-router):
const body = require('koa-json-body')({ limit: '10kb' })
app.post('/users', body, (ctx, next) => {
console.log(ctx.request.body)
})
To test, simply run
yarn test
For koa 0.x and 1.x support, see the koa-1 branch.
FAQs
Single-purpose koa middleware to parse valid JSON request bodies and nothing else.
The npm package koa-json-body receives a total of 600 weekly downloads. As such, koa-json-body popularity was classified as not popular.
We found that koa-json-body demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.