Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@roadiehq/backstage-plugin-aws-lambda
Advanced tools
![preview of Lambda Widget](https://raw.githubusercontent.com/RoadieHQ/backstage-plugin-aws-lambda/main/docs/lambda-widget.png)
packages/app
directoryyarn add @roadiehq/backstage-plugin-aws-lambda
// packages/app/src/plugins.ts
export { awsLambdaPlugin as AWSLambdaWidget } from '@roadiehq/backstage-plugin-aws-lambda';
// packages/app/src/components/catalog/EntityPage.tsx
import {
AWSLambdaOverviewWidget,
isPluginApplicableToEntity as isLambdaWidgetAvailable,
} from '@roadiehq/backstage-plugin-aws-lambda';
...
const OverviewContent = ({ entity }: { entity: Entity }) => (
<Grid container spacing={3}>
...
{isLambdaWidgetAvailable(entity) && (
<Grid item md={6}>
<AWSLambdaOverviewWidget entity={entity} />
</Grid>
)}
</Grid>
);
In order to perform requests to AWS lambda plugin first asks backend for temporary credentials via /api/aws/credentials
(it uses @roadiehq/backstage-plugin-aws-auth backend plugin)
Regardless of what auth method you use - you can also decide what functions to show in the table (what functions particular service uses) by annotating backstage.yaml with name of the functions separated by comma, like:
metadata:
annotations:
aws.com/lambda-function-name: HelloWorld
aws.com/lambda-region: us-east-1
Make sure you have AWS auth backend plugin installed in your backstage backend (installation guide in the readme https://github.com/RoadieHQ/backstage-plugin-aws-auth)
FAQs
Unknown package
The npm package @roadiehq/backstage-plugin-aws-lambda receives a total of 91 weekly downloads. As such, @roadiehq/backstage-plugin-aws-lambda popularity was classified as not popular.
We found that @roadiehq/backstage-plugin-aws-lambda demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.