import { type FeathersApplication } from "https://dotland.deno.dev/x/feathers@v5.0.0-pre.28/mod.ts";
Properties
A list of callbacks that run when a new service is registered
The index of all services keyed by their path.
Important: Services should always be retrieved via app.service('name')
not via app.services
.
Contains all registered application level hooks.
Methods
Retrieve an application setting by name
Set an application setting
Returns a fallback service instance that will be registered
when no service was found. Usually throws a NotFound
error
but also used to instantiate client side services.
Register a new service or a sub-app. When passed another
Feathers application, all its services will be re-registered
with the path
prefix.
Get the Feathers service instance for a path. This will be the service originally registered with Feathers functionality like hooks and events added.