0.1.1 • Published 10 years ago

koa-method-match v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 years ago

koa-method-match

Method match router for koa, does not handle path matching. It is intended to be used with koa-path, but is not tied to it.

Usage

var method = require('koa-method-match')
var path = require('koa-path')()

// You can simply pass the method in as a string
app.use(method('get', path('/user/:id', handler)))

// Or you can use method types as functions
var post = method.post
var get = method.get

app.use(post(path('/user', handler)))
app.use(get(path('/user/:id', handler)))