Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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

Package Overview
Dependencies
Maintainers
0
Versions
603
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Backstage Catalog module to view unprocessed entities

  • 0.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

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

This catalog-backend module adds support for viewing unprocessed entities. An unprocessed entity is one that doesn't show up in the catalog.

A distinction is made between failed and pending entities.

A failed entity has validation error that breaks processing.

A pending entity has not been processed yet.

Installation

yarn --cwd packages/backend add @backstage/plugin-catalog-backend-module-unprocessed

In packages/backend/src/index.ts add the module:

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

Legacy Backend

In packages/backend/src/plugins/catalog.ts import the module and initialize it after invoking CatalogBuilder.build():

import { UnprocessedEntitiesModule } from '@backstage/plugin-catalog-backend-module-unprocessed';

//...

const unprocessed = new UnprocessedEntitiesModule(
  await env.database.getClient(),
  router,
);
unprocessed.registerRoutes();

FAQs

Package last updated on 19 Nov 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc