
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@pepperize/cdk-eks
Advanced tools
[](https://github.com/pepperize/cdk-eks/blob/main/LICENSE) [](https://www.npmjs.com/packa
npm install @pepperize/cdk-eks
or
yarn add @pepperize/cdk-eks
Create a new CDK TypeScript App project with projen
mkdir my-project
cd my-project
git init -b main
npx projen new awscdk-app-ts
Add @pepperize/cdk-eks to your dependencies in .projenrc.js
const project = new awscdk.AwsCdkTypeScriptApp({
//...
deps: ["@pepperize/cdk-eks"],
});
Install the dependency
yarn
npx projen
Create a new app in src/main.ts
import { App, Stack } from "aws-cdk-lib";
import * as ec2 from "aws-cdk-lib/aws-ec2";
import { Cluster } from "@pepperize/cdk-eks";
const app = new App();
const stack = new Stack(app);
const vpc = new ec2.Vpc(stack, "Vpc", {});
new Cluster(stack, "Cluster", {
vpc: vpc,
hostedZoneIds: ["Z1D633PJN98FT9"],
mainRoles: [],
});
Contributions of all kinds are welcome :rocket: Check out our contributor's guide.
For a quick start, check out a development environment:
git clone git@github.com:pepperize/cdk-eks
cd cdk-eks
# install dependencies
yarn
# build with projen
yarn build
FAQs
[](https://github.com/pepperize/cdk-eks/blob/main/LICENSE) [](https://www.npmjs.com/packa
The npm package @pepperize/cdk-eks receives a total of 3 weekly downloads. As such, @pepperize/cdk-eks popularity was classified as not popular.
We found that @pepperize/cdk-eks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.