x-cubed / event-store-client

JS client library for connecting to Event Store over TCP/IP
The Unlicense
71 stars 24 forks source link

Support for SSL #30

Closed mlouage closed 6 years ago

mlouage commented 6 years ago

Hello

Does this client support an SSL connection to Eventstore?

Thanks Maarten

x-cubed commented 6 years ago

No, the purpose of this library is to implement the binary Protocol Buffers protocol used by Event Store, and that binary protocol is not encrypted. The binary protocol is more efficient in terms of network use and allows the ability to subscribe to event notifications.

If you want to use the Event Store API that is available over HTTP or HTTPS, you don't need this library, you can just invoke the API directly using normal web requests.