koa-override
method override middleware for koa
Last updated 8 years ago by fengmk2 .
MIT · Repository · Bugs · Original npm
$ cnpm install koa-override 
SYNC missed versions from official npm registry.

koa-override

NPM version build status Test coverage David deps npm download

Method override middleware. Let you use HTTP verbs such as PUT or DELETE in places where the client doesn't support it.

Refactor from koa-override-method#5

Install

$ npm install koa-override --save

Usage

const bodyParser = require('koa-bodyparser')
const override = require('koa-override')

app.use(bodyParser())
app.use(override())

API

const mw = override([options])

If body exists, check body._method first. Otherwise check X-HTTP-Method-Override header.

If there is no override parameter, then it's simply this.request.method. You shouldn't use this unless you know you're using override.

  • options.allowedMethods = [ 'POST' ] Only allowed override method on POST request.

License

MIT

Current Tags

  • 3.0.0                                ...           latest (8 years ago)

2 Versions

  • 2.0.0                                ...           8 years ago
  • 3.0.0                                ...           8 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (10)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org