@ingress/router
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-beta.16 • Public • Published

@ingress/router

The ingress router is an ingress addon that operates in an app driven by the @ingrss/http (or similar) driver. It's purpose is to enable requests to be handled by Controllers (classes) and Routes (methods).

The @ingress/router plugin introduces the @Controller and @Route decorators. @Controller exists on an instance, and facilitates dependency collection of groups of routes, which are declared by @Route decorated class methods.

Example

import { Router, Route } from '@ingress/router'

const router = new Router()
const { Controller } = router

@Controller('/group')
class RouteGroup {
  @Route.Get('/handler')
  handler() {
    return 'Hello World'
  }
}

The above example, declares a route at /group/handler that returns an HTTP 200 OK with a body content of Hello World and a Content-Type of ttext/plain;charset=UTF-8

Alternatively, instead of through decorators, routes can be defined using the API

API

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.0-beta.163latest
1.0.0-beta.13beta

Version History

VersionDownloads (Last 7 Days)Published
1.0.0-beta.163
0.1.0-alpha.53
1.0.0-rc.2065
1.0.0-rc.193
1.0.0-rc.183
1.0.0-rc.173
1.0.0-rc.163
1.0.0-rc.143
1.0.0-rc.133
1.0.0-rc.123
1.0.0-rc.113
1.0.0-rc.103
1.0.0-rc.93
1.0.0-rc.83
1.0.0-rc.73
1.0.0-rc.63
1.0.0-rc.53
1.0.0-rc.43
1.0.0-rc.33
1.0.0-rc.23
1.0.0-rc.13
1.0.0-beta.123
1.0.0-beta.113
1.0.0-beta.103
1.0.0-beta.93
1.0.0-beta.83
1.0.0-beta.73
1.0.0-beta.63
1.0.0-beta.53
1.0.0-beta.23
1.0.0-beta.13

Package Sidebar

Install

npm i @ingress/router

Weekly Downloads

155

Version

1.0.0-beta.16

License

MIT

Unpacked Size

113 kB

Total Files

42

Last publish

Collaborators

  • calebboyd
  • sberan