Getting Started
Installation
Install Apeze using Bun:
bunx create apeze my-app
cd my-app
bun apeze dev
Project Structure
my-app/
├── pages/
│ ├── index.tsx
│ └── api/
│ └── hello.ts
├── components/
├── public/
└── api.settings.ts
Your First Page
Create a new page in pages/hello.tsx
:
function HelloPage() {
return Hello World!
;
}
export default HelloPage;