
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.