UNPKG

@loopback/docs

Version:

Documentation files rendered at [https://loopback.io](https://loopback.io)

36 lines (23 loc) 1.6 kB
--- lang: en title: 'API docs: boot.bootstrapper.boot' keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI sidebar: lb4_sidebar editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/boot permalink: /doc/en/lb4/apidocs.boot.bootstrapper.boot.html --- <!-- Do not edit this file. It is automatically generated by API Documenter. --> [Home](./index.md) &gt; [@loopback/boot](./boot.md) &gt; [Bootstrapper](./boot.bootstrapper.md) &gt; [boot](./boot.bootstrapper.boot.md) ## Bootstrapper.boot() method Function is responsible for calling all registered Booter classes that are bound to the Application instance. Each phase of an instance must complete before the next phase is started. <b>Signature:</b> ```typescript boot(execOptions?: BootExecutionOptions, ctx?: Context): Promise<Context>; ``` ## Parameters | Parameter | Type | Description | | --- | --- | --- | | execOptions | [BootExecutionOptions](./boot.bootexecutionoptions.md) | Execution options for boot. These determine the phases and booters that are run. | | ctx | [Context](./context.context.md) | Optional Context to use to resolve bindings. This is primarily useful when running app.boot() again but with different settings (in particular phases) such as 'start' / 'stop'. Using a returned Context from a previous boot call allows DI to retrieve the same instances of Booters previously used as they are bound using a CONTEXT scope. This is important as Booter instances may maintain state. | <b>Returns:</b> Promise&lt;[Context](./context.context.md)<!-- -->&gt;