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

@axis-backstage-staging/plugin-jira-dashboard-backend

v0.7.2

Published

A plugin that makes requests to [Atlassian REST API](https://developer.atlassian.com/server/jira/platform/rest-apis/) to get issues and project information from Jira.

Downloads

5

Readme

Jira Dashboard Backend

A plugin that makes requests to Atlassian REST API to get issues and project information from Jira.

The frontend plugin that displays this information is Jira Dashboard.

Setup

The following sections will help you get the Jira Dashboard Backend plugin setup and running.

Installation

Install the plugin by following the example below:

# From your Backstage root directory
yarn --cwd packages/backend add @axis-backstage/plugin-jira-dashboard-backend

Configuration

The Jira Dashboard plugin requires the following YAML to be added to your app-config.yaml:

jiraDashboard:
  token: ${JIRA_TOKEN}
  baseUrl: ${JIRA_BASE_URL}
  userEmailSuffix: ${JIRA_EMAIL_SUFFIX}
  annotationPrefix: ${JIRA_ANNOTATION_PREFIX} # Optional

Configuration Details:

  • JIRA_TOKEN: The API token to authenticate towards Jira. It can be found by visiting Atlassians page at https://developer.atlassian.com/cloud/jira/platform/basic-auth-for-rest-apis/. In case you are using a Bearer or Basic token, you need to add it in the beginning of the token. For instance: Bearer your-secret-token

    Note: The JIRA_TOKEN variable from Roadie's Backstage Jira plugin can not be reused here because of the added encoding in this token.

  • JIRA_BASE_URL: The base url for Jira in your company, including the API version. For instance: https://jira.se.your-company.com/rest/api/2/
  • JIRA_EMAIL_SUFFIX: The email suffix used for retrieving a specific Jira user in a company. For instance: @your-company.com
  • JIRA_ANNOTATION_PREFIX: Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com. If you want to configure the plugin to be compatible with Roadie's Backstage Jira Plugin, use the following annotation prefix:
jiraDashboard:
   {/* required configs... */}
  annotationPrefix: jira

Integrating

Here's how to get the backend plugin up and running:

  1. Create a new file named packages/backend/src/plugins/jiraDashboard.ts, and add the following to it:

    import { createRouter } from '@axis-backstage/plugin-jira-dashboard-backend';
    import { Router } from 'express';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      return await createRouter({
        logger: env.logger,
        config: env.config,
        discovery: env.discovery,
        identity: env.identity,
        tokenManager: env.tokenManager,
      });
    }
  2. Wire this into the overall backend router by adding the following to packages/backend/src/index.ts:

    import jiraDashboard from './plugins/jiraDashboard';
    ...
    
    async function main() {
      // Add this line under the other lines that follow the useHotMemoize pattern
     const jiraDashboardEnv = useHotMemoize(module, () => createEnv('jira-dashboard'),
    
      // Add this under the lines that add their routers to apiRouter
     apiRouter.use('/jira-dashboard', await jiraDashboard(jiraDashboardEnv));
    }
  3. Now run yarn start-backend from the repo root.

  4. In another terminal, run the command: curl localhost:7007/api/jira-dashboard/health. The request should return {"status":"ok"}.

New Backend System

The Jira Dashboard backend plugin has support for the new backend system. Here is how you can set it up:

In your packages/backend/src/index.ts make the following changes:

+ import { jiraDashboardPlugin } from '@axis-backstage/plugin-jira-dashboard-backend';

const backend = createBackend();
+ backend.add(jiraDashboardPlugin());
// ... other feature additions

backend.start();