Skip to content

Commit d2906b8

Browse files
authored
Add hono framework boilerplate (#1166)
### Description We have new and improved Hono framework detection and handling. ### Demo URL https://hono.vercel.dev/ ### Type of Change - [X] New Example - [ ] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [x] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered?
1 parent 8a35977 commit d2906b8

File tree

5 files changed

+2117
-0
lines changed

5 files changed

+2117
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/examples/tree/main/framework-boilerplates/hono&template=hono)
2+
3+
Live Example: https://hono.vercel.dev/
4+
5+
```
6+
npm install
7+
npm run dev
8+
```
9+
10+
```
11+
open http://localhost:3000
12+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "hono",
3+
"type": "module",
4+
"scripts": {
5+
"dev": "vc dev",
6+
"build": "vc build"
7+
},
8+
"dependencies": {
9+
"hono": "^4.8.9"
10+
},
11+
"devDependencies": {
12+
"@types/node": "^20.11.17",
13+
"tsx": "^4.7.1",
14+
"typescript": "^5.8.3",
15+
"vercel": "latest"
16+
}
17+
}

0 commit comments

Comments
 (0)