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

Method start

packages/boot/src/mixins/boot.mixin.ts:73–82  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71 // eslint-disable-next-line @typescript-eslint/ban-ts-comment
72 // @ts-ignore
73 public async start(): Promise<void> {
74 await super.start();
75 if (!this.booted) {
76 process.emitWarning(
77 'App started without booting. Did you forget to call ' +
78 '`await app.boot()`?',
79 'LoopBackWarning',
80 );
81 }
82 }
83
84 /**
85 * Convenience method to call bootstrapper.boot() by resolving bootstrapper

Callers

nothing calls this directly

Calls 1

startMethod · 0.65

Tested by

no test coverage detected