Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thenativeweb/node-eventstore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.1
Choose a base ref
...
head repository: thenativeweb/node-eventstore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 1,523 additions and 510 deletions.
  1. +5 −5 .travis.yml
  2. +566 −398 README.md
  3. +10 −2 index.js
  4. +10 −0 lib/base.js
  5. +15 −0 lib/databases/inmemory.js
  6. +99 −67 lib/databases/mongodb.js
  7. +7 −3 lib/databases/tingodb.js
  8. +1 −0 lib/event.js
  9. +45 −27 lib/eventstore.js
  10. +290 −0 lib/storeEventEmitter.js
  11. +4 −4 package.json
  12. +33 −0 releasenotes.md
  13. +56 −1 test/eventstoreTest.js
  14. +382 −0 test/storeEventEmitterTest.js
  15. +0 −3 test/storeTest.js
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
sudo: false

services:
- mongodb
- redis-server
- elasticsearch
- mongodb
- redis-server
- elasticsearch
# - couchdb

language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
- "10"
- "12"
- "14"

branches:
only:
Loading