-
-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
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
Adhere to the full Streams API #159
Comments
Yea, definitely would like to see. Node.js 0.8 will be dropped with the next major but 0.10 support won't be removed anytime soon, so if it's possible to still support 0.10 that would be super awesome. |
FWIW I feel like the current API is pretty janky so totally open to an API that flows better, especially the output side. Many would like to see this write to a transform stream to do transformations, which sounds like you're ask too. |
In addition for Node.js versions, everything in this org tries to support as many Node.js versions as possible -- it's part of our philosophy. We have the ideal support line (down to 0.10 currently) and the hard line of must go down to at least (4.0 currently). Really the minimum version is negotiable between those two, and if 0.10 isn't picked there should be some good reasons to why it's impossible to support lower (in the past we have used compat helps like on-finished to accomplish tasks like this, so perhaps it's just to make a new one). |
Yes, I need to apply a transform afterwards (compression). I'll see what I can come up with, I'll target Node 4, and then we can see if we can stretch it to 0.10. I'm in your same shoes for backward compat, as |
Currently
send
does not implement the Streams API (even if it inherits fromStream
), and in fact insidesend(..).pipe(res)
, it doesstream.pipe(res)
.Specifically, we had to use an "hack" to make it work well on Fastify. See fastify/fastify-static#46, where we had to pipe it through a modified
PassThrough
.I'm thinking of changing the API to something:
As well as:
I would like to also remove the dependency on
on-finished
and some of the others modules that were needed in the 0.8/0.10 days.I think this work should help as well with http2 compatibility as well. I'm happy to prototype this work in a forked module as well, just let me know.
cc @apapirovski
The text was updated successfully, but these errors were encountered: