
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
cdktf-helpers
Advanced tools
Helpers for creating the stacks of cdktf
, inspired by class component of React.js
.
// main_stack.ts
export class MainStack extends CdktfStackComponent<Props, State> {
beforeCreateResources() {
// do something before creating resources
new AwsProvider(this, "AWS", {
region: "us-west-1",
});
const config = JSON.parse(fs.readFileSync("./config.json", "utf-8"));
// set value for later use
this.setState("instaceType", config.instanceType);
}
createResources() {
// you can get value from props
const ami = this.props.ami;
const ec2Instance = new Instance(this, "compute", {
ami,
instanceType: this.state.instanceType,
});
// set value for output
this.setOutput("ec2_instance", ec2Instance);
}
}
// main.ts
const app = new App();
CdktfComponentFactory.createComponent(app, MainStack.name, {
ami: "ami-01456a894f71116f2",
});
A CdktfStackComponent
comes with a pair of props
and state
to help you manage the data flow of your CDKTF stack.
To define a CDKTF component class, you need to extend CdktfStackComponent
:
import { CdktfStackComponent } from "cdktf-helpers";
type Props = { ami: string };
type State = { ec2Instance: Instance };
export class MainStack extends CdktfStackComponent<Props, State> {
beforeCreateResources() {
// do something before creating resources
}
createResources() {
// create resources here
}
afterCreateResources() {
// do something after creating resources
}
}
constructor()
type constructor = (
scope: Construct,
id: string,
props?: Record<string, any> & { stackName: string }
) => CdktfStackComponent;
beforeCreateResources()
It is invoked immediately after a component is initialised.
createResources()
It is invoked after beforeCreateResources
is executed.
You can create the resources in this method.
afterCreateResources()
It is invoked after createResource
is executed.
CdktfComponentFactory.createComponent
import { CdktfComponentFactory } from "cdktf-helpers";
import { App } from "cdktf";
import MainStack from "./main_stack.ts";
const app = new App();
CdktfComponentFactory.createComponent(app, MainStack.name, {
ami: "ami-01456a894f71116f2",
});
CdktfComponentFactory.createComponentAsync
Factory also provide async method, you can use it to create component asynchronously.
// With top level await
import { CdktfComponentFactory } from "cdktf-helpers";
import { App } from "cdktf";
import MainStack from "./main_stack.ts";
const app = new App();
await CdktfComponentFactory.createComponentAsync(app, MainStack.name, {
ami: "ami-01456a894f71116f2",
});
When an instance of the CDKTF component is generated by createComponent()
, these methods are called in the below order:
constructor()
beforeCreateResources()
createResource()
afterCreateResources()
setOutput
while creating resources, it will be called after all functions are executed.FAQs
Unknown package
The npm package cdktf-helpers receives a total of 0 weekly downloads. As such, cdktf-helpers popularity was classified as not popular.
We found that cdktf-helpers 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.