Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adeiskandarzulkarnaen/hono-starter
Bun Hono Starter Project by implementing Clean Architecture
https://github.com/adeiskandarzulkarnaen/hono-starter
bunjs clean-architecture honojs prisma-orm
Last synced: about 1 month ago
JSON representation
Bun Hono Starter Project by implementing Clean Architecture
- Host: GitHub
- URL: https://github.com/adeiskandarzulkarnaen/hono-starter
- Owner: adeiskandarzulkarnaen
- Created: 2024-11-26T04:21:30.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-26T13:02:48.000Z (about 1 month ago)
- Last Synced: 2024-11-26T14:20:22.909Z (about 1 month ago)
- Topics: bunjs, clean-architecture, honojs, prisma-orm
- Language: TypeScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
To install dependencies:
```sh
bun install
```To run:
```sh
bun run start:dev
```open http://localhost:3000
```
hono-starter/ → Root Proyek.
├─ .docs/ → Folder dokumentasi, digunakan untuk menyimpan dolkumentasi dari project.
├─ .github/ → Folder github, digunakan untuk menyimpan konfigurasi seperti github workflow.
├─ prisma/ → Berkas prisma migrations database.
├─ src/ → Source code aplikasi
│ ├─ Domains/ → Enterprise Business Rules.
│ │ ├─ authentications/ → Subdomain authentications, di sini berisi domain model (entities) dan abstraksi/interface AuthenticationRepository .
│ │ ├─ users/ → Subdomain users, di sini berisi domain model (entities) dan abstraksi/interface UserRepository.
│ ├─ Applications/ → Application Business Rules
│ │ ├─ security/ → Abstraksi/interface dari tools dan helper dalam hal security yang digunakan pada use case. Contohnya AuthTokenManager dan EncryptionHelper
│ │ ├─ use_cases/ → Alur bisnis aplikasi.
│ ├─ Interfaces/ → Interface Adapter. Di sini kita akan mendefinisikan routes configuration dan juga handler yang dibungkus dengan Hono routes.
│ ├─ Infrastructures/ → Agen External seperti Framework dan Tools External.
│ │ ├─ database/ → Driver database.
│ │ ├─ http/ → HTTP Server menggunakan Hono.js.
│ │ ├─ repositories/ → Objek konkrit/implementasi dari repository domain.
│ │ ├─ security/ → Objek konkrit/implementasi dari tools dan helper dalam hal security.
│ │ ├─ container.ts → Penampung (container) seluruh instance dari service yang digunakan aplikasi.
│ ├─ Commons/ → Shared folder.
│ │ ├─ exceptions/ → Custom exceptions.
│ ├─ app.ts → Entry point aplikasi.
├─ tests/ → Utilitas kebutuhan untuk testing.
├─ .env → Environment variable.
├─ package.json → Project Manifest.
```