All Projects → charlessolar → Eshoponcontainersddd

charlessolar / Eshoponcontainersddd

Licence: mit
Fork of dotnet-architecture/eShopOnContainers in full DDD/CQRS design using my own patterns

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Eshoponcontainersddd

Todomvc Ddd Cqrs Eventsourcing
Implementation of basic Todo app via tastejs/todomvc in C#/Typescript with eventsourcing, cqrs, and domain driven design
Stars: ✭ 134 (+6.35%)
Mutual labels:  microservices, eventsourcing, eventstore, cqrs-es, example, netstandard, ddd, cqrs, domain-driven-design, backend, frontend
Eventflow
Async/await first CQRS+ES and DDD framework for .NET
Stars: ✭ 1,932 (+1433.33%)
Mutual labels:  eventsourcing, eventstore, cqrs-es, netstandard, ddd, cqrs, domain-driven-design
Ultimate Backend
Multi tenant SaaS starter kit with cqrs graphql microservice architecture, apollo federation, event source and authentication
Stars: ✭ 978 (+676.19%)
Mutual labels:  microservices, eventstore, ddd, cqrs, backend
eventuous
Minimalistic Event Sourcing library for .NET
Stars: ✭ 236 (+87.3%)
Mutual labels:  cqrs, ddd, eventstore, domain-driven-design, eventsourcing
Aggregates.net
.NET event sourced domain driven design model via NServiceBus and GetEventStore
Stars: ✭ 261 (+107.14%)
Mutual labels:  microservices, eventsourcing, eventstore, ddd, cqrs
Eventflow.example
DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 2.2 and include docker compose file.
Stars: ✭ 131 (+3.97%)
Mutual labels:  eventsourcing, eventstore, ddd, cqrs, domain-driven-design
delta
DDD-centric event-sourcing library for the JVM
Stars: ✭ 15 (-88.1%)
Mutual labels:  cqrs, ddd, domain-driven-design, eventsourcing, cqrs-es
Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
Stars: ✭ 162 (+28.57%)
Mutual labels:  eventsourcing, netstandard, ddd, cqrs, domain-driven-design
Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
Stars: ✭ 414 (+228.57%)
Mutual labels:  microservices, netstandard, ddd, cqrs, domain-driven-design
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (+26.19%)
Mutual labels:  microservices, cqrs-es, ddd, cqrs, domain-driven-design
Bifrost
This is the stable release of Dolittle till its out of alpha->beta stages
Stars: ✭ 111 (-11.9%)
Mutual labels:  eventsourcing, eventstore, ddd, cqrs, domain-driven-design
Quiz
Example real time quiz application with .NET Core, React, DDD, Event Sourcing, Docker and built-in infrastructure for CI/CD with k8s, jenkins and helm
Stars: ✭ 100 (-20.63%)
Mutual labels:  microservices, eventsourcing, ddd, cqrs
Jdonframework
Domain-Driven-Design Pub/Sub Domain-Events framework
Stars: ✭ 978 (+676.19%)
Mutual labels:  microservices, eventsourcing, cqrs, domain-driven-design
nestjs-boilerplate-microservice
Nestjs Microservice boilerplate: apply DDD, CQRS, and Event Sourcing within an event driven architecture
Stars: ✭ 270 (+114.29%)
Mutual labels:  cqrs, ddd, eventstore, eventsourcing
Eventhorizon
CQRS/ES toolkit for Go
Stars: ✭ 961 (+662.7%)
Mutual labels:  eventsourcing, ddd, cqrs, domain-driven-design
Event Sourcing Castanha
An Event Sourcing service template with DDD, TDD and SOLID. It has High Cohesion and Loose Coupling, it's a good start for your next Microservice application.
Stars: ✭ 68 (-46.03%)
Mutual labels:  eventstore, ddd, cqrs, domain-driven-design
nota
"None Of The Above" - is going to be a secure online voting system, intended to give the electorate better choices. It always adds one additional choice to anything to be voted on: If more than 50% of voters choose "None of the Above", the election is considered null and void.
Stars: ✭ 17 (-86.51%)
Mutual labels:  cqrs, ddd, eventsourcing, cqrs-es
les
Go directly from an event storming to a working API: Event Markdown / Markup validation & NodeJS CQRS/ES application builder.
Stars: ✭ 48 (-61.9%)
Mutual labels:  cqrs, eventstore, eventsourcing, cqrs-es
Nestjs Cqrs Starter
NestJS CQRS Microservices Starter Project
Stars: ✭ 80 (-36.51%)
Mutual labels:  microservices, eventstore, ddd, cqrs
Jivejdon
Jivejdon is a Domain Driven Design appication with CQRS/ES/Clean/Hexagonal architecture
Stars: ✭ 287 (+127.78%)
Mutual labels:  eventsourcing, cqrs-es, ddd, domain-driven-design

eShopOnContainers (Aggregates.Net Edition)

This project is a fork (maybe better a loose copy) of Microsoft's container example eShopOnContainers. I implemented many of the same objects using my own DDD, EventSourcing library Aggregates.NET and its meant to be an illustrative example of a fully event sourced application.

Like what you see?

We're hiring developers! We are currently looking for a couple people to help develop new software for small/medium businesses - remote OK but located around Chicago is ideal. If you have an interest in learning DDD, CQRS, EventSourcing and making distributed systems less complex send me an email or better yet open a pull request!

Live Demo

Currently disabled

Wiki

There are articles in the Wiki about certain features of the app / how certain things are handled and implemented - check them out!

Disclaimer

This is a project written over the course of a month in my free time. Its not bug free, its not exploit free, it may not even be very clean in places. Please don't judge too harsly 🙏

Instructions

Linux Only

One docker image we require to run (eventstore) doesn't have a windows container - so run docker-compose on linux only for now!

Start

from the linux-cli directory

export SERVICESTACK_LICENSE=<-Your license->
export HOST_SERVER=<-Machine's ip address->
./build.sh
./up.sh

Note

A NServiceBus license is not required to run this example - but a servicestack license is. Its also required to supply the host machine's ip - use localhost if running localy

What is EventSourcing?

EventSourcing is a process of representing domain objects (Orders, Invoices, Accounts, etc) as a series of separate events.

Your application ends up being 1 long audit log which records every state-changing event that occurs. The advantage of this approach is other processes can read this event log and generate models that contain only the information the process cares about. There is also additional information available that other services perhaps don't record themselves.

Imagine a shoppign cart which fills with items to buy. The warehouse only cares about the final order of the stuff the customer actually agreed to purchase -

but the marketing team might care more about the items the customer removed from their cart without buying.

Using eventsourcing correctly you can generate models which contain both sets of information to satisfy both departments with only 1 set of data.

What is CQRS

CQRS stands for Command and Query Responsibility Segregation

In a nut shell - commands are everything that want to change the application state. Queries are anything that want to read application state. There is no overlap

Commands do not return any data other than if they were Accepted or Rejected. Accepted meaning the change was saved and read models will be updated. Rejected meaning the command failed validation or was not valid to be run at this time. (One example would be trying to invoice a sales order twice)

Architecture Overview

Commands Processing

Good reads

Libraries Used

Backend

FrontEnd

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].