
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@buttonize/cdk
Advanced tools
Buttonize is a low-code paltform which enables cloud developers to create UI widgets like buttons, inputs, forms etc. connected to the cloud services like AWS Lambda, AWS Step Functions, AmazonDynamoDB and more.
This package contains AWS CDK constructs through which you can manage Buttonize widgets via Infrastructure as Code.
$ npm i -D @buttonize/cdk
Coming soon...
You can find more examples in the examples
folder.
import * as path from 'path'
import * as btnz from '@buttonize/cdk'
import * as cdk from 'aws-cdk-lib'
import * as lambda from 'aws-cdk-lib/aws-lambda'
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'
import { Construct } from 'constructs'
export class SimpleFormStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props)
btnz.GlobalConfig.init(this, {
apiKey: process.env.BUTTONIZE_API_KEY, // Ideally use SSM or Secrets Manager
executionRoleExternalId: 'secret-external-id' // Ideally use SSM or Secrets Manager
})
const simpleFormActionLambda = new NodejsFunction(
this,
'SimpleFormActionLambda',
{
handler: 'handler',
entry: path.join(__dirname, `/src/index.ts`),
runtime: lambda.Runtime.NODEJS_18_X
}
)
const form = new btnz.Form({
name: '[Example: simple-form] Invoke the lambda function',
label: 'Open form',
tags: ['simple', 'button', 'example']
})
form
.addTextField('email', {
label: 'Email of the user',
placeholder: 'user@example.com',
regex: '^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$'
})
.addToggleField('isAdmin', {
label: 'Is admin'
})
simpleFormActionLambda.addEventSource(form)
}
}
Read more here.
Learn more at docs.buttnoize.io
FAQs
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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.