Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koa-modules/methodoverride
HTTP method override middleware for koa
https://github.com/koa-modules/methodoverride
Last synced: 24 days ago
JSON representation
HTTP method override middleware for koa
- Host: GitHub
- URL: https://github.com/koa-modules/methodoverride
- Owner: koa-modules
- License: mit
- Created: 2014-03-24T16:27:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T18:00:04.000Z (over 6 years ago)
- Last Synced: 2024-11-08T23:03:18.374Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 14
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
- awesome-koa - koa-methodoverride - HTTP 方法覆盖中间件 ![](https://img.shields.io/github/stars/koa-modules/methodoverride.svg?style=social&label=Star) ![](https://img.shields.io/npm/dm/koa-methodoverride.svg?style=flat-square) (仓库 / 中间件)
README
# koa-methodoverride
> HTTP method override middleware for koa.
Forked from [Express method-override][]
[![NPM version][npm-img]][npm-url]
[![NPM Downloads][downloads-image]][npm-url]
[![Build status][travis-img]][travis-url]
[![Test coverage][coveralls-img]][coveralls-url]
[![Dependency status][david-img]][david-url]
[![License][license-img]][license-url]### Install
```
npm install koa-methodoverride
```* note: `[email protected]` is for `[email protected]`, use `[email protected]` with `[email protected]`.
### Usage, more [Express method-override][]
```js
var app = require('koa')();
var methodOverride = require('koa-methodoverride');app.use(methodOverride());
app.listen(3000);
```### License
MIT
[Express method-override]: https://github.com/expressjs/method-override
[npm-img]: https://img.shields.io/npm/v/koa-methodoverride.svg?style=flat-square
[npm-url]: https://npmjs.org/package/koa-methodoverride
[travis-img]: https://img.shields.io/travis/koa-modules/methodoverride.svg?style=flat-square
[travis-url]: https://travis-ci.org/koa-modules/methodoverride
[coveralls-img]: https://img.shields.io/coveralls/koa-modules/methodoverride.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/koa-modules/methodoverride?branch=master
[license-img]: https://img.shields.io/badge/license-MIT-green.svg?style=flat-square
[license-url]: LICENSE
[david-img]: https://img.shields.io/david/koa-modules/methodoverride.svg?style=flat-square
[david-url]: https://david-dm.org/koa-modules/methodoverride
[downloads-image]: https://img.shields.io/npm/dm/koa-methodoverride.svg?style=flat-square