Being single threaded isn't necessarily a bad thing. Most programs are not written to be multi-threaded anyway, and single-threaded async code works better and is easier to develop for.
Agreed. Many programs don't require multi threading. For heavy computational operations, I would use something else than JS. Often native libraries can do the heavy lifting in parallel to the main thread.
Being single threaded isn't necessarily a bad thing. Most programs are not written to be multi-threaded anyway, and single-threaded async code works better and is easier to develop for.
Agreed. Many programs don't require multi threading. For heavy computational operations, I would use something else than JS. Often native libraries can do the heavy lifting in parallel to the main thread.
near feature complete imo, was taking a look at their server sent events handler package and it was a joy to play around with.
What's the fastify equivalent for bun?
Elysiajs or you can use just fastify
Elysia is nice. Covers quite a lot of fastify's capabilities.