Getting Started
Welcome! This guide will walk you through the basics.
Installation
npm install my-packagepnpm add my-packageyarn add my-packageBasic Usage
import { createApp } from 'my-package';
const app = createApp({ name: 'My Application', version: '1.0.0',});
app.start();Project Structure
my-project/├── src/│ ├── components/│ ├── pages/│ └── index.js├── public/├── package.json└── config.jsNext Steps
- Read the Configuration Guide
- Explore the API Reference
- Check out Examples