Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
aws-cdk-webflow
Advanced tools
AWS CDK constructs to set up a Webflow website for a domain hosted on AWS
AWS CDK constructs to set up a Webflow website for a domain hosted on AWS.
npm install aws-cdk-webflow
import { App, Stack, StackProps, } from "@aws-cdk/core";
import { HostedZone } from "@aws-cdk/aws-route53";
import { Webflow } from "aws-cdk-webflow";
class MyStack extends Stack {
constructor(scope: App, id: string, props?: StackProps) {
super(scope, id, props)
const hostedZone = HostedZone.fromLookup(this, "HostedZone", {
domainName: "example.com",
});
new Webflow(this, "Webflow", {
hostedZone: hostedZone,
});
}
}
Follow these instructions to set up your Webflow project.
Here is a checklist to set up a new account before we can deploy stacks from this project.
Self-contained reproducible dev environment
docker-compose build
docker-compose run --rm dev bash
Copyright © 2021 robofarm
Distributed under the MIT License (MIT).
FAQs
AWS CDK constructs to set up a Webflow website for a domain hosted on AWS
The npm package aws-cdk-webflow receives a total of 0 weekly downloads. As such, aws-cdk-webflow popularity was classified as not popular.
We found that aws-cdk-webflow demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.