
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@nodeboot/starter-backstage
Advanced tools
The @nodeboot/starter-backstage package enables seamless integration of Backstage into NodeBoot-based applications. It provides a structured way to configure the Backstage Catalog Client using dependency injection (DI) and app-config.yaml.
To use the Backstage starter in your project, install it via npm or yarn:
npm install @nodeboot/starter-backstage
or
yarn add @nodeboot/starter-backstage
app-config.yamlEnsure that your app-config.yaml file includes the necessary Backstage integration settings:
integrations:
backstage:
apiUrl: http://localhost:7051/api
apiKey: ${BACKSTAGE_API_KEY:-dummy}
apiUrl: The URL of your Backstage instance.apiKey: API key used for authentication (optional but recommended).In your main application class, use the @EnableBackstage() decorator to enable Backstage integration:
import "reflect-metadata";
import {Container} from "typedi";
import {NodeBoot, NodeBootApp, NodeBootApplication, NodeBootAppView} from "@nodeboot/core";
import {ExpressServer} from "@nodeboot/express-server";
import {EnableDI} from "@nodeboot/di";
import {EnableComponentScan} from "@nodeboot/scan";
import {EnableBackstage} from "@nodeboot/starter-backstage";
@EnableDI(Container)
@EnableBackstage()
@EnableComponentScan()
@NodeBootApplication()
export class MyApplication implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}
Once enabled, you can inject the CatalogClient into your services to interact with Backstage:
import {Service} from "@nodeboot/core";
import {CatalogClient} from "@backstage/catalog-client";
@Service()
export class MyService {
constructor(private catalogClient: CatalogClient) {}
async getEntities() {
return this.catalogClient.getEntities();
}
}
yarn dev if running locally).app-config.yaml contains the correct Backstage API URL and credentials.pnpm start).Solution: Ensure that app-config.yaml includes the integrations.backstage section with the correct apiUrl and apiKey.
Solution: Verify that the API key is correctly set and has the required permissions.
The @nodeboot/starter-backstage package simplifies Backstage integration in NodeBoot applications. By following this guide, you can configure and use Backstage Catalog Client effectively within your services.
For more details, refer to the official Backstage documentation.
FAQs
Node-Boot starter package for Backstage Catalog
We found that @nodeboot/starter-backstage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.