mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Allows for bundled kubectl config to be changed without code changes - Introduce @k8slens/kubectl-versions - Compile time fetching of versions - Update @swc/* packages Signed-off-by: Sebastian Malton <sebastian@malton.name> |
||
|---|---|---|
| .. | ||
| src | ||
| .eslintrc.json | ||
| .prettierrc | ||
| index.ts | ||
| jest.config.js | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| webpack.config.js | ||
@k8slens/application
This package contains stuff related to creating Lens-applications.
Usage
$ npm install @k8slens/application-for-electron-main
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
beforeApplicationIsLoadingInjectionTokenonLoadOfApplicationInjectionTokenafterApplicationIsLoadedInjectionToken