mrgrain / bun-cdk-app

Test repo on how to run CDK with Bun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS CDK with Bun

Example repository how to use the AWS CDK with Bun.

Getting started

It's as easy as:

bun cdk synth

app.ts contains the CDK app using Bun
cdk.json points CDK at the Bun app: bun app.ts

Run the CLI directly

Instead of using a task, the CLI can be invoked directly:

bunx aws-cdk synth

Install the CLI globally

It's possible to globally install the CLI:

bun install -g aws-cdk

The same command will also update if a newer version is available.

Now using CDK can be shortened to cdk synth.
However global installation is not recommended, because the versions of the cli and lib can diverge easily.

About

Test repo on how to run CDK with Bun

License:Apache License 2.0


Languages

Language:TypeScript 100.0%