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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@citrixcloud/backstage-sds-workspaces

v0.1.6

Published

A Backstage plugin to integrate [Citrix Secure Developer Spaces (SDS) Workspaces](https://docs.citrix.com/en-us/secure-developer-spaces) into your Backstage developer portal.

Readme

SDS Workspaces Plugin

A Backstage plugin to integrate Citrix Secure Developer Spaces (SDS) Workspaces into your Backstage developer portal.


Prerequisite: Backend Plugin Required

Important:

To use the SDS Workspaces frontend plugin, you must also install and configure the backstage-sds-workspaces-backend plugin in your Backstage backend project.

This backend plugin enables all communication between Backstage and the SDS Workspaces platform.


Features

  • View and manage SDS Workspaces directly from Backstage.
  • Custom SDS Workspace Cards and Tabs for your entities.
  • Seamless integration with SDS Workspaces platform.

Getting Started

1. Install the Plugin

# From your Backstage app root
yarn add @citrixcloud/backstage-sds-workspaces

2. Configure in app-config.yaml

Add the following section to your app-config.yaml:

sdsWorkspaces:
  platformURL: ${platformURL}

Replace ${platformURL} with your SDS Workspaces Platform base URL (e.g., https://yourdomain.com).


3. Add to Your Frontend

Import the plugin components in your app:

export {
  SDSWorkspaceCard,
  SDSWorkspacesTab,
} from '@citrixcloud/backstage-sds-workspaces';
  • SDSWorkspaceCard: Card component to display workspace info on entity pages.
  • SDSWorkspacesTab: Tab component for additional workspace details.

Example Usage

Add SDSWorkspaceCard to the Entity Overview Page

  1. Open your EntityPage.tsx (commonly at packages/app/src/components/catalog/EntityPage.tsx).
  2. Find the section for the Overview tab, often under:
<EntityLayout.Route path="/" title="Overview">
  {/* ...other overview components... */}
  <Grid item md={6}>
    <SDSWorkspaceCard entity={entity} />
  </Grid>
  {/* ...other overview components... */}
</EntityLayout.Route>

This will display the SDS Workspace card on the entity’s Overview page.


Add SDSWorkspacesTab as a Tab in the Entity Page

  1. In the same EntityPage.tsx, add a new route for the tab:
<EntityLayout.Route path="/sds-workspaces" title="SDS Workspaces">
  <SDSWorkspacesTab entity={entity} />
</EntityLayout.Route>

This creates a new "SDS Workspaces" tab in the entity page navigation.


Note:
If your entity page uses a different layout, insert these components where other entity cards or tabs are configured.


New Frontend System Support

This plugin supports Backstage's New Frontend System, which provides a more modular and extensible plugin architecture.

Using with the New Frontend System

If your Backstage instance uses the new frontend system, you can install this plugin using the alpha export:

// packages/app/src/index.tsx
import sdsWorkspacesPlugin from '@citrixcloud/backstage-sds-workspaces/alpha';

const app = createApp({
  features: [
    // ... other plugins
    sdsWorkspacesPlugin,
  ],
});

The plugin will automatically provide the SDSWorkspaceCard and SDSWorkspacesTab as declarative extensions using blueprints, along with the configured API client.