https://github.com/koajs/router
Router middleware for Koa. Maintained by @forwardemail and @ladjs.
https://github.com/koajs/router
Last synced: 9 days ago
JSON representation
Router middleware for Koa. Maintained by @forwardemail and @ladjs.
- Host: GitHub
- URL: https://github.com/koajs/router
- Owner: koajs
- License: mit
- Created: 2019-06-16T14:34:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-18T00:50:38.000Z (7 months ago)
- Last Synced: 2025-02-21T10:07:58.379Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 759 KB
- Stars: 878
- Watchers: 19
- Forks: 176
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- License: LICENSE
Awesome Lists containing this project
- awesome - koajs/router - Router middleware for Koa. Maintained by @forwardemail and @ladjs. (JavaScript)
- awesome-humanscape - koa-router - router 처리를 위한 middleware (Node.js, koa / Utilites)
- stars - router
- stars - router
README
# [@koa/router](https://github.com/koajs/router)
> Router middleware for [Koa](https://github.com/koajs/koa). Maintained by [Forward Email][forward-email] and [Lad][].
[](https://github.com/koajs/router/actions/workflows/ci.yml)
[](https://github.com/sindresorhus/xo)
[](https://github.com/prettier/prettier)
[](https://lass.js.org)
[](LICENSE)## Table of Contents
* [Features](#features)
* [Migrating to 7 / Koa 2](#migrating-to-7--koa-2)
* [Install](#install)
* [Typescript Support](#typescript-support)
* [API Reference](#api-reference)
* [Contributors](#contributors)
* [License](#license)## Features
* Express-style routing (`app.get`, `app.put`, `app.post`, etc.)
* Named URL parameters
* Named routes with URL generation
* Match routes with specific host
* Responds to `OPTIONS` requests with allowed methods
* Support for `405 Method Not Allowed` and `501 Not Implemented`
* Multiple route middleware
* Multiple and nestable routers
* `async/await` support## Migrating to 7 / Koa 2
* The API has changed to match the new promise-based middleware
signature of koa 2. See the [koa 2.x readme](https://github.com/koajs/koa/tree/2.0.0-alpha.3) for more
information.
* Middleware is now always run in the order declared by `.use()` (or `.get()`,
etc.), which matches Express 4 API.## Install
[npm][]:
```sh
npm install @koa/router
```## Typescript Support
```sh
npm install --save-dev @types/koa__router
```## API Reference
See [API Reference](./API.md) for more documentation.
## Contributors
| Name |
| ---------------- |
| **Alex Mingoia** |
| **@koajs** |
| **Imed Jaberi** |## License
[MIT](LICENSE) © Alex Mingoia
##
[forward-email]: https://forwardemail.net
[lad]: https://lad.js.org
[npm]: https://www.npmjs.com