Skip to content

Commit 75ada00

Browse files
committed
fix deno script
1 parent e6e01d1 commit 75ada00

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

bench/routers/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
To run the benchmark:
2+
```sh
3+
# node
4+
bun start:node
5+
6+
# deno (allowed env and write)
7+
bun start:deno
8+
9+
# bun
10+
bun start:bun
11+
```

bench/routers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"scripts": {
1010
"start:node": "node --expose-gc index.ts",
11-
"start:deno": "deno --v8-flags=--expose-gc --allow-env index.ts",
11+
"start:deno": "deno --v8-flags=--expose-gc --allow-env --allow-write index.ts",
1212
"start:bun": "bun index.ts"
1313
}
1414
}

0 commit comments

Comments
 (0)