Ashcon Partovi
Ashcon Partovi
This is something we have talked about doing in the future, but in a potentially different way. For example, we could have different builds of Bun that you could install,...
We should probably increase the default value, and adding some way to configure this makes sense.
According to #6741, this may have not been fully fixed.
Unfortunately, these variables will need to be set before runtime, otherwise Bun will not know when to read the `.env` files again. For now, the workaround is to parse the...
The install issue will be fixed with #4959, but the package won't work because we don't implement `node:drgram` yet, which is being tracked here: #1630
This would be a nice feature to add to `Bun.serve`
For reference, this is the `SNICallback` API: https://nodejs.org/api/tls.html#tlscreateserveroptions-secureconnectionlistener
Is it possible to share a minimal reproduction in code?
We do plan on having a better debugging experience, which might include `node:inspector`. However, for typedoc, it looks like it's just doing a simple see if it's in debug mode....
This is something we could implement, but we'd need to think of an API design for it. Maybe something like this: ```js Bun.serve({ async* fetch(request) { // Can yield multiple...