Installation
Get Baeta up and running in your project in just a few steps.
Requirements
- Node.js version 22 or above
- TypeScript version 5.6 or above
- Package manager of your choice (npm, yarn, or pnpm)
Setup
1. Core Package
First, install the core package which provides all essential functionality:
- yarn
- npm
- pnpm
yarn add @baeta/core
npm install @baeta/core
pnpm add @baeta/core
This is all you need at runtime for a basic Baeta installation.
2. Development Tools
For the best development experience, install our CLI and compiler tools:
- yarn
- npm
- pnpm
yarn add @baeta/cli @baeta/compiler -D
npm install @baeta/cli @baeta/compiler --save-dev
pnpm add @baeta/cli @baeta/compiler -D
The compiler is optional but recommended as it provides:
- TypeScript configuration support
- Hot reload of the application
Next Steps
Once installed, proceed to configuration to set up your project.