File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,22 @@ Tested routes:
13
13
- [ Hono RegExpRouter] ( https://github.com/honojs/hono )
14
14
- [ Hono TrieRouter] ( https://github.com/honojs/hono )
15
15
16
+ Install:
17
+
18
+ ```
19
+ bun install
20
+ ```
21
+
16
22
For Node.js:
17
23
18
24
```
19
- yarn bench:node
25
+ bun run bench:node
20
26
```
21
27
22
28
For Bun:
23
29
24
30
```
25
- yarn bench:bun
31
+ bun run bench:bun
26
32
```
27
33
28
34
This project is heavily impaired by [ delvedor/router-benchmark] ( https://github.com/delvedor/router-benchmark )
Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ const routes: (Route & { name: string })[] = [
66
66
} ,
67
67
]
68
68
69
- /*
70
69
for ( const route of routes ) {
71
70
summary ( ( ) => {
72
71
group ( `${ route . name } - ${ route . method } ${ route . path } ` , ( ) => {
@@ -77,7 +76,7 @@ for (const route of routes) {
77
76
}
78
77
} )
79
78
} )
80
- }*/
79
+ }
81
80
82
81
group ( 'all together' , ( ) => {
83
82
summary ( ( ) => {
You can’t perform that action at this time.
0 commit comments