koa-simple-router

0.2.0 • Public • Published

koa-simple-router

npm version build status

Simple and fast router for koa 2.x

Features

  • support prefix
  • support auto OPTIONS and 405 response
  • use path-to-regexp to parse url
  • use express style routing ( .get, .put, .post, .all, etc )
  • use loop to iterate through multiple routes instead of recursive calls
    • better performance
    • prevent max call stack error with large number of routes

Installation

$ npm install koa-simple-router

Usage

const Koa = require('koa') // koa 2.x
const router = require('koa-simple-router')
 
let app = new Koa()
 
app.use(router(_ => {
  _.get('/', (ctx, next) => {
    ctx.body = 'hello'
  })
  _.post('/name/:id', (ctx, next) => {
    // ...
  })
})

API

router(init)

Create a router middleware with init function.

const Koa = require('koa')
const router = require('koa-simple-router')
const app = new Koa()
 
app.use(router(_ => {
  _.get('/', (ctx, next) => {
 
  })
  _.post('/path', (ctx, next) => {
 
  })
}))

router(options, init)

Create a router middleware with options and init function.

Default options is the same as path-to-regexp.

  • prefix (default: null)
  • sensitive (default: false)
  • strict (default: false)
  • end (default: true)
const Koa = require('koa')
const router = require('koa-simple-router')
const app = new Koa()
 
app.use(router({ prefix: '/api' }, _ => {
  _.get('/:user/id', (ctx, next) => {
 
  })
  _.post('/:user/id', (ctx, next) => {
 
  })
}))

_.verb(path, ...mw)

app.use(router(_ => {
  _.get('/path',
    (ctx, next) => {},
    (ctx, next) => {},
    (ctx, next) => {}
  )
}))

_.all(path, ...[mw | obj])

Middleware mode: works just like _.verb(path, ...mw) but ignore ctx.method

app.use(router(_ => {
  _.all('/path/to/:recource', (ctx, next) => {
 
  })
}))

Object mode: accept an object with method as key and middleware or array of middleware as value

  • auto HEAD response if GET present
  • auto OPTIONS response with Allow header
  • auto 405 response with Allow header
app.use(router(_ => {
  _.all('/path/to/:recource', {
    get: (ctx, next) => {
 
    },
    post: (ctx, next) => {
 
    }
    // Allow: GET, HEAD, POST, OPTIONS
  })
  //
  // you can mix middleware and object
  //
  _.all('/path2/to/:dest', authMiddleware, {
    get: (ctx, next) => {
 
    },
    post: (ctx, next) => {
 
    },
    put: (ctx, next) => {
 
    },
    delete: (ctx, next) => {
 
    }
    // Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS
  })
}))

_.param(param, ...mw)

Register middleware for named route parameters.

app.use(router(_ => {
  _.param('user', async (ctx, next) => {
    ctx.user = await User.find(ctx.params.user)
    // ...
    return next()
  })
 
  _.get('/:user/do-x', (ctx, next) => {
 
  })
 
  _.post('/:user/do-y', (ctx, next) => {
 
  })
}))
 

License

MIT

Package Sidebar

Install

npm i koa-simple-router

Weekly Downloads

26

Version

0.2.0

License

MIT

Last publish

Collaborators

  • gyson