Hi I'm building an app in Node, using the Express framework.
I want to add http2 support and these are the options I've came across:
My favorite is node-spdy, I've already implemented it and it works perfectly.
But I'm wandering if it's the right choice?
Node.js HTTP/2 as "native" solution seems like a great choice as well.
Should I stick with node-spdy or transition to the "native" http2?
I don't have much experience with these two, so any helpful information or guidance is appreciated.
As you see HTTP/2 is still a experimental feature in Node.js. (https://nodejs.org/api/http2.html#http2_http_2)
I would recommend you to stick to node-spdy until its stable.
Also its not back compatible with HTTP/1 so you need to handle your own fallback