Creates a new floofball (i.e. floof module).
Sets a default body parser for all requests this floofball receives.
Body parser type.
This FloofBall, for the sake of chaining.
Registers a new after-handler which gets run after endpoint handlers.
The newly-created after-handler.
Registers a new before-handler which gets run before any endpoint handler.
The newly-created before-handler.
Sets a default rendering context for all requests this floofball receives.
The rendering context.
This FloofBall, for the sake of chaining.
Registers a new endpoint handler for the HTTP verb DELETE.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a new endpoint handler for the given method and path.
The HTTP verb this handler should handle.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a new error handler that gets run to handle erroneous HTTP status codes.
The newly-created error handler.
Registers a new endpoint handler for the HTTP verb GET.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a new endpoint handler for the HTTP verb HEAD.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a new endpoint handler for the HTTP verb PATCH.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a plugin.
The plugin to be registered.
This FloofBall, for the sake of chaining.
Registers a new endpoint handler for the HTTP verb POST.
The path this handler should handle requests to.
The newly-created endpoint handler.
Registers a new endpoint handler for the HTTP verb PUT.
The path this handler should handle requests to.
The newly-created endpoint handler.
Generated using TypeDoc
A floof module. Provides endpoints and other associated request handlers for a floof server.