Files
backstage/docs/reference/createPlugin.md
T
2020-03-30 12:07:37 +02:00

939 B

createPlugin

Taking a plugin config as argument and returns a new plugin.

Plugin Config

function createPlugin(config: PluginConfig): BackstagePlugin;

type PluginConfig = {
  id: string;
  register?(hooks: PluginHooks): void;
};

type PluginHooks = {
  router: RouterHooks;
};

Example Uses

Creating a basic plugin

Showcasing adding multiple routes, a feature flag and a redirect.

import { createPlugin } from '@backstage/core';
import ExampleComponent from './components/ExampleComponent';

export default createPlugin({
  id: 'new-plugin',
  register({ router, featureFlags: { registerFeatureFlag } }) {
    registerFeatureFlag('enable-example-component');

    router.registerRoute('/new-plugin', ExampleComponent);
  },
});

Back to References