Takes an array of Express Handlers or a single Express Handler. The handler(s) will be called after
each @Route
method in the @Routable
class.
See IRoutableMethodOptions.before for an explanation of how after works.
An array or single IAuthenticatorConstructor. SakuraApi works through the authenticators
left to right. If @
Routable for this @
Route defines authenticators, they will be appended to the
right of the array when handling the route (i.e., they'll happen after this routes authenticators).
Takes an array of Express Handlers or a single Express Handler. The handler(s) will be called before
each @Route
method in the @Routable
class.
If you want to use a class method, it has to be static. Why? Because when the @
Route decorator is executed,
the instance of the @
Routable class doesn't exist yet.
NOTE: handlers are bound to the instance of @
Routable at the time of execution, this
is in the context of the
instance. So... even though you have to use the static
hack, you still have and 'instance' method.
@Routable({ baseUrl: 'user' }) class UserApi { instanceValue = true; @Route({ path: '/:useId', method: 'get', before: [UserApi.someHandler] }) postNewUser(req, res, next) { res.sendStatus(OK); next(); } static someHandler(req, res, next) { assert(this.instanceValue); } }
You can also use one of built in handlers. Those are located in @sakuraapi/api/handlers
. Options include:
Boolean value that sets this route to blacklisted when set to true. This is a quick way to turn off a route when testing. The default value is false.
Optionally defines the HTTP method to attach to this @
Route's handler. See the example for
[[RoutableMethodOptions.path]].
Defaults to HTTP method 'GET' if not method is provided.
String defining the endpoint of the route after the baseUrl set in [[RoutableClassOptions.baseUrl]]. The default
is ''
.
@Routable({ baseUrl: 'user' }) class User { @Route({ path: '/:useId', method: 'get' }) postNewUser(req, res) { res.sendStatus(OK); } }
The above example binds the postNewUser
route handler to respond to GET
requests directed to the /user/123
endpoint (assuming the :userId
was passed in as 123
).
Generated using TypeDoc
Interface defining the valid properties for the
@
Route decorator.