Page Contents

Home > @loopback/boot > Booter

Booter interface

Defines the requirements to implement a Booter for LoopBack applications: - configure() - discover() - load()

A Booter will run through the above methods in order.

Signature:

export interface Booter 

Methods

Method Description
configure()? (Optional) Configure phase of the Booter. It should set options / defaults in this phase.
discover()? (Optional) Discover phase of the Booter. It should search for artifacts in this phase.
load()? (Optional) Load phase of the Booter. It should bind the artifacts in this phase.