We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation is confusing
Bun also exposes stdin as a BunFile via Bun.stdin. This is useful for incrementally reading large inputs that are piped into the bun process.
BunFile
Bun.stdin
It is not clear that Bun.stdin.stream() and Bun.file("/dev/stdin").stream() behave differently.
Bun.stdin.stream()
Bun.file("/dev/stdin").stream()
https://bun.sh/guides/process/stdin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the type of issue?
Documentation is confusing
What is the issue?
It is not clear that
Bun.stdin.stream()
andBun.file("/dev/stdin").stream()
behave differently.Where did you find it?
https://bun.sh/guides/process/stdin
The text was updated successfully, but these errors were encountered: