bojavou
bojavou
Hello Loaders team. Will this eventually end up in all version lines, or will old versions still use `globalPreload`? Trying to decide whether I should keep the preload logic in...
I feel like there are cases where you want feedback to affect related operations. Give up on a set of operations if nothing returns in time, otherwise they're still relevant...
Workaround is to tag the version, but recent releases fail to run on my system. Had to go all the way back to v21 to get a running version. ```sh...
I also want to do this! Would like to access GC control in my tests, with one of these options: - `--expose-gc` - `--allow-natives-syntax` Temporarily I disabled workers to get...
I would prefer if I could depend on abort signals being delivered. It seems odd if the signal offers it, I say I want it, and some other unrelated code...
Here's an example of the effect. The user tries to stop everything but only one operation stops. https://bojavou.github.io/canceled-abort/  ```js function aborted (event) { // The rest of my app...
> We (node) shipped (are shipping) our own helper to add a listener without the stopImmediatePropagation issue Nice. I have special utils just for listening to abort signals, I'll at...
In my iteration utils I have an abort routine that `throw()`s first then `return()`s if it doesn't take. This way I can deliver the error if the iterator wants it,...
I guess this would require a whole new error channel in streams. One where the error could be caught and dismissed. ```js const generator = readUsers() const stream = new...