cqrs-sample icon indicating copy to clipboard operation
cqrs-sample copied to clipboard

CQRS, EventSourcing, (DDDD) Sample in node.js

Results 9 cqrs-sample issues
Sort by recently updated
recently updated
newest added

I'm really interested in testing setup (with mocha) for a new CQRS project. Using this kind of approach I don't get where to start... Do you have suggestions? Many thanks,...

Can you put together a sample of what it would look like an aggregate with more than one entity, something like: * Car (root) * Wheel * Tire * Engine...

Hello, this is a great example of how to use CQRS and Event Sourcing. I was wondering if i use different domains, a single host (the web application) can i...

Sample is up and running, see form at http://localhost:3000 but can't add any item - field goes empty and nothing else happens. Redis is empty

Can you explain why not use just 'revision' for domain and command structure?

I really think CQRS is an interesting way of implementing distributed systems. However, I have been looking at the sample app for several hours now and the longer I look...

Apparently this is deprecated in socket.io.

Do you use MongoDb as an Event Store (Db) and a Queue? In this case, between the Write and Read you don't need something like zmq or RabbitMQ for messaging...

Event Ordering, Concurrency, and Client Reconnect Sync: Are you ordering the events as they come into the event store, how are you keeping track of the ordering of events when...