This is a simple project to demonstrate the Clean Architecture using the Hono and Bun as an example.
-
/:message
- Returns the message in the path parameter.https://hono-bun-clean-architecture.ken0421wabu.workers.dev/HelloWorld
-
/pokemon/:id
- Returns the pokemon with the id in the path parameter.https://hono-bun-clean-architecture.ken0421wabu.workers.dev/pokemon/1
- Package Manager: Bun
- Database: None
- HTTP Server: Hono
- Test Framework: Bun
- Linter: Biome
- Formatter: Biome
- install bun MacOS:
curl -fsSL https://bun.sh/install | bash
https://bun.sh/docs/installation
- Clone the repository
git clone
- Install dependencies
bun install
- Run the project
bun dev
bun run deploy