mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
40 lines
905 B
Markdown
40 lines
905 B
Markdown
# @k8slens/application
|
|
|
|
This package contains stuff related to creating Lens-applications.
|
|
|
|
# Usage
|
|
|
|
```bash
|
|
$ npm install @k8slens/application-for-electron-main
|
|
```
|
|
|
|
```typescript
|
|
import { applicationFeature, startApplicationInjectionToken } from "@k8slens/application";
|
|
import { registerFeature } from "@k8slens/feature-core";
|
|
import { createContainer } from "@ogre-tools/injectable";
|
|
|
|
const di = createContainer("some-container");
|
|
|
|
registerFeature(di, applicationFeature);
|
|
|
|
const startApplication = di.inject(startApplicationInjectionToken);
|
|
|
|
startApplication();
|
|
```
|
|
|
|
|
|
## Features
|
|
|
|
#### Start application
|
|
`startApplicationInjectionToken`
|
|
|
|
Starts the application and calls timeslots in specified order. Check for timeslots for more info.
|
|
|
|
## Extendability
|
|
|
|
#### Timeslots
|
|
|
|
1. `beforeApplicationIsLoadingInjectionToken`
|
|
2. `onLoadOfApplicationInjectionToken`
|
|
3. `afterApplicationIsLoadedInjectionToken`
|