An open API service indexing awesome lists of open source software.

https://github.com/csbun/koa-regexp-router

Simple Regexp Router for Koa
https://github.com/csbun/koa-regexp-router

Last synced: over 1 year ago
JSON representation

Simple Regexp Router for Koa

Awesome Lists containing this project

README

          

# koa-regexp-router

```javascript
const REGEXP = /^\/([\w\-]+)\/(\d+)$/;
// /( res ) /(num)
koa.use(regexpRouter(REGEXP, function * (path, res, num) {
// ...
}));
```