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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@imashish21/backstage-plugin-score-card

v2.0.0

Published

Welcome to the score-card plugin! Main idea behind it comes from a need to somehow visualize maturity of our services and to establish a process how to improve it (discuss with the teams what to focus on next).

Downloads

1

Readme

score-card

Welcome to the score-card plugin! Main idea behind it comes from a need to somehow visualize maturity of our services and to establish a process how to improve it (discuss with the teams what to focus on next).

Components

ScoreBoardPage

Page that displays list of entities and their scores.

Score board

ScoreCardTable

Table that displays list of entities and their scores.

Score card table

| Props | type | Description | Default | |--------------------|--------------------------------|-------------------------|--------------------------| | title | string | Title of the table | Entities scores overview | | entityKindFilter | string[] | Filter entities by kind | undefined  |

ScoreCard

Displays detail for one entity and its scoring. You may use it in entity detail page in the catalog.

Score Card

You may drill down to the details of each score together with explanation why it has such score & also a TODO for the team.

Score Card Detail

ScoringDataJsonClient

Implementation of ScoringDataApi that the above components are using to load data. This client simply reads it from a JSON files located e.g. on a blob storage account.

The location of the JSON files may be configured in `app-config.yaml' like this:

scorecards:
  jsonDataUrl: https://raw.githubusercontent.com/Oriflame/backstage-plugins/main/plugins/score-card/sample-data/

In the above location it expects data in a format see scoring data.

Important: loading from the url might be blocked by the Content-Security-Policy. In that case you would need to add the server address among csp settings like this:

backend:
  csp:
    default-src: ["'self'", "raw.githubusercontent.com"]

Also the server providing the data needs to have correctly configured CORS policy, i.e. return HTTP header Access-Control-Allow-Origin that should list domain from where you serve your backstage instance. See e.g. how to configure CORS for Azure Blob Storage.

Configuration

All configuration options:

  • jsonDataUrl[optional]: url for the JSON data client, see ScoringDataJsonClient.
  • wikiLinkTemplate: the template for the link to the wiki. You may use any existing properties from the EntityScoreEntry, e.g. "https://TBD/XXX/_wiki/wikis/XXX.wiki/{id}".

How to use the plugin

  1. Install the score-card Plugin:

    # From your Backstage root directory
    yarn add --cwd packages/app @oriflame/backstage-plugin-score-card
  2. Add Score board to packages/app/src/App.tsx:

    +import { ScoreBoardPage } from '@oriflame/backstage-plugin-score-card';
    
    const routes = (
      <FlatRoutes>
    +    <Route path="/score-board" element={<ScoreBoardPage />} />
      </FlatRoutes>
    );
  3. Add Link to menu packages/app/src/components/Root/Root.tsx:

    +import Score from '@material-ui/icons/Score';
    
    export const Root = ({ children }: PropsWithChildren<{}>) => (
       <SidebarPage>
         <Sidebar>
           <SidebarGroup label="Menu" icon={<MenuIcon />}>
             ...
             <SidebarScrollWrapper>
               ...
    +          <SidebarItem icon={Score} to="score-board" text="Score board" />
             </SidebarScrollWrapper>
           </SidebarGroup>
           ...
         </Sidebar>
         {children}
       </SidebarPage>
     );
  4. Add Score Card to packages/app/src/components/catalog/EntityPage.tsx:

    +import { EntityScoreCardContent } from '@oriflame/backstage-plugin-score-card';
    
    const systemPage = (
       <EntityLayoutWrapper>
         <EntityLayout.Route path="/" title="Overview">
           ...
         </EntityLayout.Route>
    +
    +    <EntityLayout.Route path="/score" title="Score">
    +      <Grid container spacing={3} alignItems="stretch">
    +        <Grid item xs={12}>
    +          <EntityScoreCardContent />
    +        </Grid>
    +      </Grid>
    +    </EntityLayout.Route>
    +
       </EntityLayoutWrapper>
    );

Scoring process

To find out a score for your service we follow this process:

  • Scoring introduction
  • Team self-assessment
  • Review process
  • Backstage integration & visualization
  • Regular update

Scoring introduction

We have based the scoring on a set of non-functional requirements in these areas:

  • Code: coding standards, implementation of proper logging, audits, resiliency patterns etc.
  • Quality: coverage by unit & automated integration tests, implementation of SonarCloud, performance tests etc.
  • Operations: readiness for operating the service such as automated ci/cd pipelines, dashboards, alerts, GitOps, DRP etc.
  • Documentation: various documentation e.g. project description, README, wiki (business, technical), road map, etc.
  • Security: fulfillment of our security standards.

The main goal of the scoring is to visualize the maturity of the services (systems). We do not expect each service to have 100 % fulfillment for every area. Primary goal is to identify where we can help the team to improve and where we should help all teams in general.

Also every service is specific and in a different state of implementation. When a team starts building a new service it is absolutely OK to have e.g. low Operations score.

So as a first step the teams need to understand why. That is why there is an important step to prepare teams for the scoring process, e.g. with following presentation: system-scoring.pdf.

Team self-assessment

Team does the self assessment, that is answering a form (e.g. via Sharepoint list) with list of questions. There is a space for comments. Each requirement is described in detail in a wiki.

Example how a form in Sharepoint may look like:

Sharepoint Form

Review process

Answers & comments are reviewed together with the team by an architect. Questions are answered, possible improvements and TODOs discussed and agreed with the team & product owner(s).

Backstage integration & visualization

There is an integration pipeline that runs regularly that integrates the Sharepoint list, git repository with the scoring data and the storage account that provides JSON scoring data for the Backstage plugin to visualize results.

For more detailed info see README.

Regular update

Every 6 months (it depends) there needs to be a quick update with the team & the architect so we can see whenever we are improving.

Local environment

You would need the same prerequisites as for backstage (node.js,...). One component you would need is http-server that will provide the sample data for the plugin.

Navigate to the plugin directory /plugins/score-card and run yarn start:dev. Your local DEV environment will start: http://localhost:3024/.

Unit testing

To run unit tests simply execute yarn test score-card;

Integration testing

This is being done as part of the backstage integration tests. See /cypress/src/integration/score-card.

Getting started

Your plugin has been added to the example app in this repository, meaning you'll be able to access it by running yarn start in the root directory, and then navigating to /score-card.

You can also serve the plugin in isolation by running yarn start in the plugin directory. This method of serving the plugin provides quicker iteration speed and a faster startup and hot reloads. It is only meant for local development, and the setup for it can be found inside the /dev directory.