
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
A set of tools and conventions for working with AWS CDK.
This package bstracts the class-based CDK library with a functional approach that removes a lot of heavy lifiting and repetitiveness. In addition to a clean interface, this package also automatically adds resources that are frequently used in tandem with other resources, such as SSM parameters for common SQS Queue properties like ARN and URL. Overall, this package attempts to abstract best practices with the AWS CDK that the user doesn't have to think about. Compared with the class-based inteface of AWS CDK, far less code is required to deploy resources, and resources can be understood clearly at a glance.
This package requires an Active LTS Node version (v18+).
Until recently this package was used internally and was not published on the registry. It's grown to a considerable size and it's intended that TypeScript type hinting and intellisense will be used for infomation on usage.
That said, documentation here will progressively improve over time.
Using npm:
pnpm add @dot/cdk --save-dev
The example below demonstrates a few key features:
App appDotStack stackRestApi and accompanying NodeJsFunctionDestinationStream and Stream for a FirehoseStreamimport { resolve } from 'path';
import { addApp, addApi, addFirehose, addStack, Duration, RemovalPolicy } from '@dot/cdk';
import { name } from './package.json'; // e.g. svc-batman
const app = addApp();
const scope = addStack({ app, name });
const verbs = ['GET', 'OPTIONS', 'POST'];
const DEPLOY_ENV = 'prod';
const sourcePath = resolve(__dirname, '../src');
const timeout = Duration.minutes(15);
const { handler } = addApi({
deployEnv: DEPLOY_ENV,
handler: {
entryFilePath: 'stream/lambda.ts',
environmentVariables: { DEPLOY_ENV },
scope,
sourcePath,
timeout
},
name: 'stream',
scope,
verbs
});
const { sourceStream } = addFirehose({
destinationBucket: {
autoDelete: false,
removalPolicy: RemovalPolicy.RETAIN
},
name: 'firehose',
scope,
source: { encryption: true }
});
sourceStream.grantWrite(handler);
FAQs
A set of tools and conventions for working with AWS CDK
The npm package @dot/cdk receives a total of 620 weekly downloads. As such, @dot/cdk popularity was classified as not popular.
We found that @dot/cdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.