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