---
lang: en
title: 'API docs: core.application.oninit'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/core
permalink: /doc/en/lb4/apidocs.core.application.oninit.html
---

<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@loopback/core](./core.md) &gt; [Application](./core.application.md) &gt; [onInit](./core.application.oninit.md)

## Application.onInit() method

Register a function to be called when the application initializes.

This is a shortcut for adding a binding for a LifeCycleObserver implementing a `init()` method.

**Signature:**

```typescript
onInit(fn: () => ValueOrPromise<void>): Binding<LifeCycleObserver>;
```

## Parameters

<table><thead><tr><th>

Parameter


</th><th>

Type


</th><th>

Description


</th></tr></thead>
<tbody><tr><td markdown="1">

fn


</td><td markdown="1">

() =&gt; [ValueOrPromise](./context.valueorpromise.md)<!-- -->&lt;void&gt;


</td><td markdown="1">

The function to invoke, it can be synchronous (returning `void`<!-- -->) or asynchronous (returning `Promise<void>`<!-- -->).


</td></tr>
</tbody></table>

**Returns:**

[Binding](./context.binding.md)<!-- -->&lt;[LifeCycleObserver](./core.lifecycleobserver.md)<!-- -->&gt;

The LifeCycleObserver binding created.


