I’m looking at using the TCP interface from a Node.js server. I’ve played around with the chat app in client-side JS & HTTP interface, but TCP will make more sense for my use case. Any pointers?
Thanks!
-Ken
I’m looking at using the TCP interface from a Node.js server. I’ve played around with the chat app in client-side JS & HTTP interface, but TCP will make more sense for my use case. Any pointers?
Thanks!
-Ken
Ken,
The TCP interface is based on Google protocol buffers. I think the best please to start is https://github.com/EventStore/EventStore/blob/master/src/EventStore/Protos/ClientAPI/ClientMessageDtos.proto
Also, see the ClientAPI c# project.
-yuriy
Great, thanks.