🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@backstage/plugin-catalog-backend-module-backstage-openapi

Package Overview
Dependencies
Maintainers
3
Versions
578
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@backstage/plugin-catalog-backend-module-backstage-openapi

0.5.2
latest
Source
npm
Version published
Weekly downloads
1.9K
-26.99%
Maintainers
3
Weekly downloads
 
Created
Source

catalog-backend-module-backstage-openapi

Summary

This module installs an entity provider that exports a single entity, your Backstage instance documentation, which merges as many backend plugins as you have defined in the config value catalog.providers.backstageOpenapi.plugins.

Notes

  • This only works with the new backend system.

Installation

To your new backend file, add:

backend.add(
  import('@backstage/plugin-catalog-backend-module-backstage-openapi'),
);

Add a list of plugins and optional entity overrides to your config. For example:

catalog:
  providers:
    backstageOpenapi:
      plugins:
        - catalog
        - events
        - search
      definitionFormat: 'yaml"' # Optional, defaults to 'json'
      entityOverrides: # All optional
        metadata:
          name: 'my-name'
          title: 'my title'
        spec:
          owner: 'my-team'

We will attempt to load each plugin's OpenAPI spec hosted at ${pluginRoute}/openapi.json. These are automatically added if you are using @backstage/backend-openapi-utils's createValidatedOpenApiRouter.

FAQs

Package last updated on 20 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts