Getting Started
Quick Start
Create a project and start building in a few minutes.
1. Create a Project
Run the interactive project generator.
fring newYou'll be asked a few questions about your project, such as the package manager and optional integrations.
2. Start the Development Server
Move into the project directory and start the application.
cd my-project
npm run devIf you're using pnpm or Bun, use the corresponding command.
3. Add Fring Packages
Fring packages can be added at any time.
fring add tableThe CLI installs the required dependencies, generates the components, and creates an example page so you can see everything working immediately.
4. Generate Modules
Generate a feature module whenever you need one.
fring generate module usersFring creates a consistent folder structure so every module starts the same way.
Next Steps
- Explore the CLI commands.
- Learn how each Fring package works.
- Browse the generated example pages.