hono
hono copied to clipboard
Fix for "Web Framework Benchmark"
What is the feature you are proposing?
The following benchmark results show a very low score for Hono:
This is because it is failing to fork the process in pm2.
Only one process is up and running because of a port conflict.
I can think of several ways, anyway we have to resolved it.
I’ve fixed a port conflict issue with the PR: https://github.com/the-benchmarker/web-frameworks/pull/6763 . But it only prevents errors and does not improve performance.
Other Node.js web frameworks such as Fastify are clustered using pm2. However, the Hono apps that run on top of bun are just forked. Since this benchmark only accesses port 3000, there is no point in forking. So I don't think it makes sense to use pm2.