MCPcopy
hub / github.com/loopbackio/loopback-next / Booter

Interface Booter

packages/boot/src/types.ts:50–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48 * A Booter will run through the above methods in order.
49 */
50export interface Booter {
51 /**
52 * Configure phase of the Booter. It should set options / defaults in this phase.
53 */
54 configure?(): Promise<void>;
55 /**
56 * Discover phase of the Booter. It should search for artifacts in this phase.
57 */
58 discover?(): Promise<void>;
59 /**
60 * Load phase of the Booter. It should bind the artifacts in this phase.
61 */
62 load?(): Promise<void>;
63}
64
65/**
66 * Export of an array of all the Booter phases supported by the interface

Callers 17

constructorMethod · 0.65
configureMethod · 0.65
binding.unit.tsFile · 0.65
setupAuthorizationFunction · 0.65
updateFileHeadersFunction · 0.65
getPackagesFunction · 0.65
loadMethod · 0.65

Implementers 10

Lb3AppBooterpackages/booter-lb3app/src/lb3app.boot
BaseArtifactBooterpackages/boot/src/booters/base-artifac
ApplicationMetadataBooterpackages/boot/src/booters/application-
ComponentApplicationBooterpackages/boot/src/booters/component-ap
TestBooterpackages/boot/src/__tests__/unit/boots
AnotherBooterpackages/boot/src/__tests__/unit/boots
TestBooterpackages/boot/src/__tests__/unit/mixin
TestBooterWithBindpackages/boot/src/__tests__/unit/mixin
TestBooterWithCustomBindingKeypackages/boot/src/__tests__/unit/mixin
AnotherTestBooterpackages/boot/src/__tests__/unit/mixin

Calls

no outgoing calls

Tested by

no test coverage detected