@anorquist/backstage-plugin-austin
v2.2.0
Published
Backstage plugin to display GitHub organization members
Maintainers
Readme
Org List Plugin
A Backstage frontend plugin that displays GitHub organization members using inherited authentication.
Features
- Display GitHub organization members in a searchable table
- Uses inherited GitHub authentication from your Backstage instance
- No additional configuration required beyond GitHub auth setup
Installation
1. Install the package
yarn add @anorquist/backstage-plugin-austin2. Add the plugin to your Backstage app
In your packages/app/src/App.tsx:
import { AustinPluginPage } from '@anorquist/backstage-plugin-austin';
// Add to your routes:
<Route path="/austin-plugin" element={<AustinPluginPage />} />3. Add navigation (optional)
In your packages/app/src/components/Root/Root.tsx:
import ExtensionIcon from '@material-ui/icons/Extension';
// Add to your sidebar:
<SidebarItem icon={ExtensionIcon} to="austin-plugin" text="Org List Plugin" />