Git Product home page Git Product logo

koa-router's Introduction

koa-router

NPM version NPM Downloads Node.js Version Build Status Tips

Router middleware for koa

  • Express-style routing using app.get, app.put, app.post, etc.
  • Named URL parameters and regexp captures.
  • String or regular expression route matching.
  • Named routes with URL generation.
  • Responds to OPTIONS requests with allowed methods.
  • Support for 405 Method Not Allowed and 501 Not Implemented.
  • Multiple route middleware.
  • Multiple routers.

Installation

Install using npm:

npm install koa-router

API Reference

Router() ⏏

Create a new router.

Example
Basic usage:

var app = require('koa')();
var router = require('koa-router')();

router.get('/', function *(next) {...});

app
  .use(router.routes())
  .use(router.allowedMethods());

Or if you prefer to extend the app with router methods:

var app = require('koa')();
var router = require('koa-router');

app
  .use(router(app))
  .get('/', function *(next) {...});

router.get|put|post|patch|delete ⇒ Router

Create router.verb() methods, where verb is one of the HTTP verbes such as router.get() or router.post().

Match URL patterns to callback functions or controller actions using router.verb(), where verb is one of the HTTP verbs such as router.get() or router.post().

router
  .get('/', function *(next) {
    this.body = 'Hello World!';
  })
  .post('/users', function *(next) {
    // ...
  })
  .put('/users/:id', function *(next) {
    // ...
  })
  .del('/users/:id', function *(next) {
    // ...
  });

Route paths will be translated to regular expressions used to match requests.

Query strings will not be considered when matching requests.

Named routes

Routes can optionally have names. This allows generation of URLs and easy renaming of URLs during development.

router.get('user', '/users/:id', function *(next) {
 // ...
});

router.url('user', 3);
// => "/users/3"

Multiple middleware

Multiple middleware may be given and are composed using koa-compose:

router.get(
  '/users/:id',
  function *(next) {
    this.user = yield User.findOne(this.params.id);
    yield next;
  },
  function *(next) {
    console.log(this.user);
    // => { id: 17, name: "Alex" }
  }
);

URL parameters

Named route parameters are captured and added to ctx.params.

Named parameters
router.get('/:category/:title', function *(next) {
  console.log(this.params);
  // => [ category: 'programming', title: 'how-to-node' ]
});
Parameter middleware

Run middleware for named route parameters. Useful for auto-loading or validation.

router
  .param('user', function *(id, next) {
    this.user = users[id];
    if (!this.user) return this.status = 404;
    yield next;
  })
  .get('/users/:user', function *(next) {
    this.body = this.user;
  })
Regular expressions

Control route matching exactly by specifying a regular expression instead of a path string when creating the route. For example, it might be useful to match date formats for a blog, such as /blog/2013-09-04:

router.get(/^\/blog\/\d{4}-\d{2}-\d{2}\/?$/i, function *(next) {
  // ...
});

Capture groups from regular expression routes are added to ctx.captures, which is an array.

Param Type Description
path String | RegExp
[middleware] function route middleware(s)
callback function route callback

router.routes ⇒ function

Returns router middleware which dispatches a route matching the request.

router.use(middleware, [...]) ⇒ Router

Use given middleware(s) before route callback.

Param Type
middleware function
[...] function

Example

router.use(session(), authorize());

// runs session and authorize middleware before routing
app.use(router.routes());

router.allowedMethods([options]) ⇒ function

Returns separate middleware for responding to OPTIONS requests with an Allow header containing the allowed methods, as well as responding with 405 Method Not Allowed and 501 Not Implemented as appropriate.

router.allowedMethods() is automatically mounted if the router is created with app.use(router(app)). Create the router separately if you do not want to use .allowedMethods(), or if you are using multiple routers.

Param Type Description
[options] Object
[options.throw] Boolean throw error instead of setting status and header

Example

var app = koa();
var router = router();

app.use(router.routes());
app.use(router.allowedMethods());

router.all(name, path, [middleware], callback) ⇒ Router

Register route with all methods.

Param Type Description
name String Optional.
path String | RegExp
[middleware] function You may also pass multiple middleware.
callback function

router.redirect(source, destination, code) ⇒ Router

Redirect source to destination URL with optional 30x status code.

Both source and destination can be route names.

router.redirect('/login', 'sign-in');

This is equivalent to:

router.all('/login', function *() {
  this.redirect('/sign-in');
  this.status = 301;
});
Param Type Description
source String URL, RegExp, or route name.
destination String URL or route name.
code Number HTTP status code (default: 301).

router.route(name) ⇒ Route | false

Lookup route with given name.

Param Type
name String

router.url(name, params) ⇒ String | Error

Generate URL for route. Takes either map of named params or series of arguments (for regular expression routes).

router.get('user', '/users/:id', function *(next) {
 // ...
});

router.url('user', 3);
// => "/users/3"

router.url('user', { id: 3 });
// => "/users/3"
Param Type Description
name String route name
params Object url parameters

router.param(param, middleware) ⇒ Router

Run middleware for named route parameters. Useful for auto-loading or validation.

Param Type
param String
middleware function

Example

router
  .param('user', function *(id, next) {
    this.user = users[id];
    if (!this.user) return this.status = 404;
    yield next;
  })
  .get('/users/:user', function *(next) {
    this.body = this.user;
  })

Contributing

Please submit all issues and pull requests to the alexmingoia/koa-router repository!

Tests

Run tests using npm test.

Support

If you have any problem or suggestion please open an issue here.

koa-router's People

Contributors

alexmingoia avatar tj avatar kilianc avatar ilkkao avatar fengmk2 avatar ifroz avatar richardprior avatar yiminghe avatar t3chnoboy avatar mikefrey avatar ryankask avatar mzyy94 avatar dead-horse avatar jeromew avatar yudppp avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.