Installation
Get Baeta up and running in your project in just a few steps.
Requirements
- Node.js 22.20.0 or later (Bun and Deno are supported, but Node is required for the CLI)
- TypeScript 5.6 or later
- Any package manager (npm, yarn, pnpm or bun)
Quick Start
tip
Use the create baeta command to quickly scaffold a new project.
- yarn
- npm
- pnpm
- bun
- yarn v1
yarn dlx create-baeta
npx create-baeta
pnpm create baeta
bun create baeta
yarn create baeta
If you prefer to set up the project manually, follow the steps below.
Setup
1. Core Package
Install the core package that provides Baeta's runtime functionality:
- yarn
- npm
- pnpm
- bun
yarn add @baeta/core
npm install @baeta/core
pnpm add @baeta/core
bun add @baeta/core
2. Development Tools
Install the CLI for type generation and development utilities:
- yarn
- npm
- pnpm
- bun
yarn add @baeta/cli -D
npm install @baeta/cli -D
pnpm add @baeta/cli -D
bun add @baeta/cli -D
Next Steps
Once installed, continue to configuration to set up your project.