npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@spacelift-io/backstage-integration-frontend

v0.2.0

Published

Backstage plugin for integrating Spacelift.io with Backstage

Readme

Spacelift Frontend Plugin

This frontend plugin for Backstage provides a user interface to view and interact with your Spacelift stacks and runs.

Installation

  1. Install the plugin package in your Backstage frontend app:

    # From your Backstage root directory
    yarn --cwd packages/app add @spacelift-io/backstage-integration-frontend
  2. Add the plugin to your packages/app/src/App.tsx:

    // packages/app/src/App.tsx
    import { SpaceliftIoPage } from '@spacelift-io/backstage-integration-frontend';
    
    // ...
    
    const routes = (
      <FlatRoutes>
        {/* ...other routes */}
        <Route path="/spacelift" element={<SpaceliftIoPage />} />
      </FlatRoutes>
    );
  3. Add the plugin to the sidebar in packages/app/src/components/Root/Root.tsx:

    // packages/app/src/components/Root/Root.tsx
    import SpaceliftIcon from '@material-ui/icons/CloudQueue'; // Example icon, choose an appropriate one
    
    // ...
    
    export const Root = ({ children }: PropsWithChildren<{}>) => (
      <SidebarPage>
        <Sidebar>
          {/* ...other sidebar items */}
          <SidebarItem icon={SpaceliftIcon} to="spacelift" text="Spacelift" />
        </Sidebar>
        {/* ... */}
      </SidebarPage>
    );

Configuration

This plugin requires the spacelift.hostUrl to be configured in your app-config.yaml to allow the frontend to make requests to the Spacelift API via the backend plugin.

spacelift:
  hostUrl: '<your-subdomain>.app.spacelift.io' # Your Spacelift instance URL (WITHOUT https://)
  readOnly: false # Optional: Set to true to disable trigger functionality (default: false)

Make sure to replace <your-subdomain> with your actual Spacelift subdomain.

Read-Only Mode

When readOnly: true is set in the configuration:

  • The trigger run button will be hidden from the UI
  • Users will only be able to view stack information
  • This setting should match the backend configuration for consistency

See the Backend Plugin README for more details on read-only mode.

Important Note on Permissions

This frontend plugin relies on the permissions configured for the Spacelift API Key in the backend plugin. It does not implement separate user-level permission checks within the frontend components.

Ensure that your Backstage instance has appropriate general permissions set up to control access to this plugin's pages and functionalities. This is crucial to prevent users from performing actions in Spacelift for which they are not authorized via the configured API key.

Compatibility

This plugin requires:

  • @backstage/core-components >= 0.17.1
  • @backstage/core-plugin-api >= 1.10.6
  • @backstage/plugin-catalog-react >= 1.17.0

It is compatible with Backstage 1.17.0 or later.

Backend Plugin

This frontend plugin requires the Spacelift Backend Plugin to be installed and configured.

Spacelift Documentation

For more information about Spacelift, please refer to the official Spacelift documentation.