GraftJS / jschan

JavaScript port of libchan based around streams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-spdy

pelger opened this issue · comments

Research and send a feedback email to this list about node-spdy

I investigated how libchan uses SPDY for sending streams, and I'm pretty confident I can replicate that easily with node-spdy once we have a target API.

libchan uses SPDY stream identifiers to send nested channels, e.g. when the client receives a stream pushed stream from the server, it can now the parent request via the SPDY stream identifier. The only catch is that it requires some gymnastic to keep track of all those identifiers, just how libchan does. However, node-spdy does this for us for free, we just need to stick a reference to our message into the connection. Have a look at https://github.com/GraftJS/jschan/blob/master/test/spdy-demo.js#L35. So, we can have nested channels in node.js too!

I'm eager to have #6 defined, so I can start coding this 🎯.

totally awesome!

I'm gonna riff on usage.md now then.

libchan people are changing their interface to not rely on SPDY stream identifiers, but to pass libchan identifiers through headers.
It's more complex than what I thought :(

docker/libchan#38

Have you asked on IRC? #libswarm on freenode.

It is possible that you can connect to a previous revision of the library? Have we got abstractions enough to handle the various types they talk about there?

I would say they are planning to break backward-compatibility. I'll ask on IRC.

Closing for the discussione we had, it's doable :).