node-eventstore-client/README.md

51 lines
1.6 KiB
Markdown
Raw Normal View History

2016-03-09 19:52:01 +00:00
# eventstore-node
2016-03-09 20:46:15 +00:00
A port of the EventStore .Net ClientAPI to Node.js
2016-03-10 01:08:03 +00:00
## Dependencies
2016-03-09 20:46:15 +00:00
2016-03-10 01:08:03 +00:00
- Node.js >= 0.12
- protobufjs module
- uuid module
2016-03-09 20:46:15 +00:00
2016-03-09 23:37:08 +00:00
## Status
Unstable
2016-03-09 20:46:15 +00:00
Incomplete/missing features:
- Typed errors: currently most errors are direct instance of Error, which is not practical for error handling
- Ssl connection: Ssl connetion is not implemented yet
- Set system settings: not implemented yet
- Performance: there's still some while loop in the code that could be problematic with node.js
- Tests: tests are only covering happy path scenarios for now
2016-03-09 23:37:08 +00:00
- NPM package: no package released yet, I will release one when code is stable
2016-03-09 20:46:15 +00:00
2016-03-10 01:08:03 +00:00
## Porting .Net Task to Node.js
I used Promise to replace .Net Task, so when executing an async command, i.e. appendToStream you'll have to wait for result/error like this:
connection
.appendToStream('myStream', client.expectedVersion.any, events, userCredentials)
.then(function(result) {
//Do something with the WriteResult here
})
.catch(function(err) {
//Handle error here
});
2016-03-09 23:37:08 +00:00
## Running the tests
2016-03-09 20:46:15 +00:00
You will need:
2016-03-10 01:08:03 +00:00
- dependencies (`npm install`)
- nodeunit (`npm install -g nodeunit`)
2016-03-09 20:46:15 +00:00
- an instance of EventStore running on localhost:1113 (https://geteventstore.com/downloads/)
To execute the tests suites simply run test with npm
2016-03-10 01:08:03 +00:00
npm test
2016-03-09 23:37:08 +00:00
## License
This is a port, original code is released under the EventStore license and can be found at https://github.com/eventstore/eventstore.
Ported code is released under the MIT license, see https://github.com/nicdex/eventstore-node/blob/master/LICENSE