190n

Results 44 comments of 190n

@alumni, we do support `napi_get_last_error_info`, and we have tests on every commit that it works as expected (it's not a stub, it actually returns info about the last error). You...

To my knowledge msgpackr only uses [napi functions plus one V8 function](https://github.com/kriszyp/msgpackr-extract/blob/db8f5b97e7aaab0bcad95f10582915d417153689/src/extract.cpp), not any libuv.

This seems to invite race conditions, because someone else could start a server on the port that `getFreePort` returned before you do. You could implement some retry logic (i.e., continuously...

> Yeah I have abused `Bun.serve({ port: 0, ...` before to get a random port but I do agree its very sus How is it sus? Binding to port 0...