Core
Framework v2.x
2

start #

Available since 2.8.0

This method starts the application.

Once the promise returned by this method resolved, the application is in the running phase.

Copied to clipboard!
start(): Promise<void>

Returns #

Returns a Promise resolving when the application is running.

Usage #

Copied to clipboard!
try {
  await app.start()
  // Application is now in "running" phase
}
catch (error) {
  console.log(error)
}