You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow for people to use process.stdin and process.stdout as expected. Allow those to work with libraries that require them. In my specific case, allow spinnies to work spinnies => readline => process.stdin/out.
What is the problem this feature will solve?
Allow for people to use
process.stdin
andprocess.stdout
as expected. Allow those to work with libraries that require them. In my specific case, allowspinnies
to workspinnies
=>readline
=>process.stdin/out
.This is a follow-up/prework needed to fix #311
What is the feature you are proposing to solve the problem?
Polyfill
Bun.stdin
andBun.stdout
intoprocess.stdin
andprocess.stdout
What alternatives have you considered?
Create the polyfill myself, however I'm stuck here:
How do I get the "WritableStream" from Bun.stdout?
The text was updated successfully, but these errors were encountered: