Francisco Presencia
Francisco Presencia
Thanks @Jarred-Sumner! Waiting on this to continue with https://github.com/oven-sh/bun/issues/894, I believe I'm pretty close to polyfill process.stdin/stdout :)
Okay, let me have a look at Bun to see if I can find where it'd be good to inject the JS module `readline`, I'll try to come back at...
Started working on `readline-polyfill` here: https://github.com/franciscop/readline-polyfill It's still pretty basic but it can run some of the Node.js examples. I wanted to check in the direction before committing many more...
Yes, unfortunately I am a bit stuck here. I found two issues so far, which I believe are probably the same as what was already mentioned by @Jarred-Sumner: ```js console.log(process.stdin,...
But `process.stdin` and `Bun.stdin.stream()` are not the same, the former is a NodeStream and the latter a WebStream. So you'd need to at least convert those to NodeStreams for them...
Ah sorry if it wasn't clear, this polyfill is _not_ a drop-in. I understand I'm writing it as a separated project, and if I get it working to certain reliability...
@Jarred-Sumner sorry I'm going to need a bit of guidance here. Do you know why this happens? ```js console.log(Bun.stdin.stream(), Bun.stdout.stream()); // ReadableStream { } ReadableStream { } ``` I need...
Issue: I am finding it very troublesome to combine these two statements and I think they clash with each other: - When the value in localStorage is undefined, return the...
As a temporary fix to anyone suffering this: load all scripts on all pages (if different `` tags are being used). Reproduction: ```html fna(); ``` Go to `page2.html`, then click...
This really kills the experience with any kind of "moving around" key press. For instance, when I want to perform some movement, I want to be able to trigger: -...