Skip to content
GitHubXDiscord

Infrastructure as TypeScript

Deploy to Cloudflare, AWS, and more with pure TypeScript. Generate support for any API in minutes with AI.

alchemy.run.ts
const database = await Database("my-database");

const website = await Worker("website", {
  bindings: {
    DB: database,
  },
});

const price = await Price("basic-license", {
  currency: "usd",
  unitAmount: 2999, // $29.99
  product: "prod_xyz"
});
const database = await Database("my-database");

const website = await Worker("website", {
  bindings: {
    DB: database,
  },
});

const price = await Price("basic-license", {
  currency: "usd",
  unitAmount: 2999, // $29.99
  product: "prod_xyz"
});