
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@drodil/backstage-plugin-toolbox
Advanced tools
Welcome to the toolbox plugin!
This plugin was created through the Backstage CLI
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 /toolbox.
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.
Add the plugin to your frontend app:
cd packages/app && yarn add @drodil/backstage-plugin-toolbox
Expose the questions page:
// packages/app/src/App.tsx
import { ToolboxPage } from '@drodil/backstage-plugin-toolbox';
// ...
const AppRoutes = () => (
<FlatRoutes>
// ...
<Route path="/toolbox" element={<ToolboxPage />} />
// ...
</FlatRoutes>
);
An interface for toolbox is now available at /toolbox.
You can also add your own tools to the plugin by passing them to the ToolboxPage as a property:
import { ToolboxPage, Tool } from '@drodil/backstage-plugin-toolbox';
const extraToolExample: Tool = {
name: 'Extra',
component: <div>Extra tool</div>,
};
<ToolboxPage extraTools={[extraToolExample]} />;
Also lazy loading is supported:
import React, { lazy } from 'react';
import { ToolboxPage, Tool } from '@drodil/backstage-plugin-toolbox';
const MyTool = lazy(() => import('./MyTool'));
const extraToolExample: Tool = {
name: 'Extra',
component: <MyTool />,
};
<ToolboxPage extraTools={[extraToolExample]} />;
FAQs
Unknown package
The npm package @drodil/backstage-plugin-toolbox receives a total of 3,014 weekly downloads. As such, @drodil/backstage-plugin-toolbox popularity was classified as popular.
We found that @drodil/backstage-plugin-toolbox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.