Getting Started

Quick Start

Create a project and start building in a few minutes.

1. Create a Project

Run the interactive project generator.

fring new

You'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 dev

If you're using pnpm or Bun, use the corresponding command.

3. Add Fring Packages

Fring packages can be added at any time.

fring add table

The 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 users

Fring 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.