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

@bdusfu/bac-change-management-frontend

v0.3.9

Published

A Backstage frontend plugin providing a full-featured **IT Change Management (DCM)** interface. It enables developers to create, edit, filter, and approve IT change requests and their associated deployment/DBA activities through a digitized workflow.

Downloads

61

Readme

bac-change-management-frontend

A Backstage frontend plugin providing a full-featured IT Change Management (DCM) interface. It enables developers to create, edit, filter, and approve IT change requests and their associated deployment/DBA activities through a digitized workflow.

What it does

  • Create/edit changes with all required fields (category, STF, cause, risk, dates, implementation plan, fallback plan, test documentation)
  • Create/edit activities under a change (DCP deployments or DBA activities) with JFrog Artifactory SHA-1 artifact validation
  • Filter and search changes by ID, owner, status, STF, cause, category, and dates
  • Approve changes with audit logging (user email, Entra ID token, timestamp, device type)
  • Update change status through the lifecycle: ÅBENT → BKLAR → KLAR → LUKKET (with validation rules)

UI structure

The plugin has two tabs:

Tab 1: Changes (/change-management/changes)

| Component | Purpose | |---|---| | Filter panel | Search by Change ID, Owner (catalog users), Status, STF (catalog systems), Cause, Category, B/P Date | | Change table | Data grid with expandable rows showing activities; row actions for edit, duplicate, create activity, update status | | Create/Edit dialogs | Slide-in forms for full change CRUD | | Activity dialogs | Create/edit deployment or DBA activities |

Tab 2: Approvals (/change-management/approve)

| Component | Purpose | |---|---| | Pending approvals table | All changes awaiting approval with expandable activity details | | Approve dialog | Full change review with authorised approver verification |

Route

| Path | Plugin ID | |---|---| | /change-management | change-management |

Backend API

Communicates with @bdusfu/bac-change-management-backend (resolved via Backstage discovery). Authentication is via an MSAL token passed in the x-authorization header.

Catalog integration

  • Fetches all kind: System entities for STF autocomplete
  • Fetches all kind: User entities for Owner autocomplete (with profile picture, display name, email)

Domain constants

| Concept | Values | |---|---| | Category | Normal (2), Emergency (2N) | | Cause of Change | New feature (1), Maintenance (2), Error correction (3) | | Risk Level | Critical, High, Medium, Low | | Activity Type | DCP, DBA | | Deployment Type | BCA, BPM, EARKIV, JAVAZOS BATCH, JAVAZOS CICS, MEP, NBP, WCM, WCM2 | | Change Status | ÅBENT, BKLAR, KLAR, LUKKET, ANN, LUKFEJL |

Authentication

| Provider | Purpose | |---|---| | Microsoft Auth (microsoftAuthApiRef) | MSAL token for Rumorboy API / Entra ID for approval audit | | Backstage Identity (identityApiRef) | Current user ID, email, UBI identifier |

Local development

cd plugins/bac-change-management-frontend
yarn start

The standalone dev setup is in the /dev directory. Navigate to /change-management.

Dependencies

| Package | Purpose | |---|---| | material-react-table v3 | Data grid tables | | @mui/x-date-pickers / dayjs | Date picker fields | | material-ui-nested-menu-item | Nested status update menu | | @backstage/core-plugin-api | Identity, discovery, fetch APIs | | @backstage/plugin-catalog-react | Catalog entity queries |