
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@portal-dx/plugin-tech-dashboard-backend
Advanced tools
Welcome to the tech-dashboard plugin!
This is the backend plugin related to the tech-dashboard plugin, which presents tech metrics on the HomePage
This plugin was created through the Backstage CLI
Access the folder /packages/backend and run the following command
yarn add @portal-dx/plugin-tech-dashboard-backend
In your App-config.yaml include this
backend:
[...]
cache:
store: redis
connection: {{ REDIS_CONNECTION }}
[...]
proxy:
'/github-traffic-views':
target: 'https://api.github.com/repos/madeiramadeirabr/mmrfc/traffic/views'
changeOrigin: true
allowedHeaders: ['Authorization', 'Accept', 'X-GitHub-Api-Version']
allowedMethods: ['GET']
pathRewrite:
'^/api/proxy/github-traffic-views': ''
headers:
Authorization: {{ GIT_HUB_KEY }}
Accept: 'application/vnd.github+json'
X-GitHub-Api-Version: '2022-11-28'
'/github-search':
target: 'https://api.github.com/search/code'
changeOrigin: true
allowedMethods: ['GET']
pathRewrite:
'^/api/proxy/github-search/code': ''
headers:
Authorization: {{ GIT_HUB_KEY }}
'/newrelic-graphql':
target: 'https://api.newrelic.com/graphql'
allowedMethods: [POST]
allowedHeaders: ['X-Api-Key']
preserveHeaderKeyCase: true
pathRewrite:
'^/api/proxy/newrelic-graphql': ''
headers:
X-Api-Key: {{ NEW_RELIC_RFC_KEY }}
'/jira/api':
target: https://madeiramadeira.atlassian.net
allowedMethods: [GET]
allowedHeaders: ['Authorization']
headers:
Authorization: {{ JIRA_TOKEN }}
Accept: 'application/json'
Content-Type: 'application/json'
[...]
In /packages/backend/src/index.ts create an api route
import techDashboard from './plugins/techDashboard';
[...]
apiRouter.use('/tech-dashboard', authMiddleware, await techDashboard(techDashboardEnv));
In your /packages/backend/src/plugins/ create a file techDashboard.ts
import { PluginEnvironment } from '../types';
import { Router } from 'express';
import { createRouter } from '@portal-dx/plugin-tech-dashboard-backend';
export default async function createPlugin({
logger,
config,
}: PluginEnvironment): Promise<Router> {
return await createRouter({
logger,
config,
});
}
FAQs
Welcome to the tech-dashboard plugin!
We found that @portal-dx/plugin-tech-dashboard-backend demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.