EventStore Haskell TCP client
Talk and exchange ideas in our dedicated Discord Server
That driver supports 100% of EventStore features !
More information about the GetEventStore database can be found there: https://eventstore.com/
Requirements
- 64bits system
- GHC >= 8.0.3
- Cabal >= 1.18
- EventStore >= 4 (Doesn't support EventStore 2020 Preview yet, previously named version 6).
Note: If you use this client version >= to 1.1
, it will only supports EventStore >= 4.0.0.
Install
$ cabal update
$ cabal install eventstore
$ git clone https://github.com/YoEight/eventstore.git
$ cd eventstore
$ cabal install
How to test
Tests are available. Those assume a server is running on 127.0.0.1
and 1113
port.
$ cabal test
How to use
module Main where
import Control.Concurrent.Async (wait)
import Data.Aeson
import Database.EventStore
main :: IO ()
main = do
conn <- connect defaultSettings (Static "127.0.0.1" 1113)
let js = object ["isHaskellTheBest" .= True]
evt = createEvent "programming" Nothing (withJson js)
as <- sendEvent conn (StreamName "languages") anyVersion evt Nothing
_ <- wait as
shutdown conn
waitTillClosed conn
Notes
That library was tested on Linux and OSX.
Contributions and bug reports are welcome!
BSD3 License
-Yorick Laupa