mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
16 lines
617 B
JSON
16 lines
617 B
JSON
{
|
|
"name": "bench",
|
|
"scripts": {
|
|
"deps": "exit 0",
|
|
"build": "exit 0",
|
|
"bun:server": "TLS=1 PORT=50051 bun ./index.js",
|
|
"node:server": "TLS=1 PORT=50051 node ./index.js",
|
|
"bench": "ghz --cacert ./cert.pem --proto ./benchmark.proto --call benchmark.BenchmarkService.Ping -d '{\"message\": \"Hello\"}' --total=100000 localhost:50051",
|
|
"bench:insecure": "ghz --insecure --proto ./benchmark.proto --call benchmark.BenchmarkService.Ping -d '{\"message\": \"Hello\"}' --total=100000 localhost:50051"
|
|
},
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "1.12.0",
|
|
"@grpc/proto-loader": "0.7.10"
|
|
}
|
|
}
|