All Projects → eventually-rs → Eventually Rs

eventually-rs / Eventually Rs

Licence: mit
Event Sourcing for Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Eventually Rs

Equinoxproject
Full ASP.NET Core 5 application with DDD, CQRS and Event Sourcing concepts
Stars: ✭ 5,120 (+1748.38%)
Mutual labels:  event-sourcing, eventstore, ddd, cqrs
iam-ddd-cqrs-es-nestjs
Identity and Access Management
Stars: ✭ 34 (-87.73%)
Mutual labels:  cqrs, ddd, eventstore, event-sourcing
eventuous
Minimalistic Event Sourcing library for .NET
Stars: ✭ 236 (-14.8%)
Mutual labels:  cqrs, ddd, eventstore, event-sourcing
Ultimate Backend
Multi tenant SaaS starter kit with cqrs graphql microservice architecture, apollo federation, event source and authentication
Stars: ✭ 978 (+253.07%)
Mutual labels:  event-sourcing, eventstore, ddd, cqrs
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 (-75.45%)
Mutual labels:  event-sourcing, eventstore, ddd, cqrs
Bifrost
This is the stable release of Dolittle till its out of alpha->beta stages
Stars: ✭ 111 (-59.93%)
Mutual labels:  event-sourcing, eventstore, ddd, cqrs
Nestjs Cqrs Starter
NestJS CQRS Microservices Starter Project
Stars: ✭ 80 (-71.12%)
Mutual labels:  event-sourcing, 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 (-52.71%)
Mutual labels:  event-sourcing, eventstore, ddd, cqrs
node-cqrs
CQRS backbone with event sourcing for Node.js
Stars: ✭ 63 (-77.26%)
Mutual labels:  cqrs, eventstore, event-sourcing
e-shop
Sample Spring Cloud microservices e-shop.
Stars: ✭ 48 (-82.67%)
Mutual labels:  cqrs, ddd, event-sourcing
awesome-talks
Awesome talks about event sourcing, cqrs, microservices, funcional programming ...
Stars: ✭ 23 (-91.7%)
Mutual labels:  cqrs, ddd, event-sourcing
RCM
RCM is a simple CRM application designed for Auto Parts Store made with ASP.NET Core based on DDD, CQRS and SOLID Principles.
Stars: ✭ 29 (-89.53%)
Mutual labels:  cqrs, ddd, event-sourcing
node-event-storage
An optimized event store for node.js
Stars: ✭ 29 (-89.53%)
Mutual labels:  cqrs, eventstore, event-sourcing
es-emergency-call
Struggling with CQRS, A+ES, DDD? We can help you!
Stars: ✭ 26 (-90.61%)
Mutual labels:  cqrs, ddd, event-sourcing
firebase-event-sourcing
Event Sourcing + CQRS + DDD for Firebase
Stars: ✭ 14 (-94.95%)
Mutual labels:  cqrs, ddd, event-sourcing
micro
Functional prooph for microservices
Stars: ✭ 53 (-80.87%)
Mutual labels:  cqrs, ddd, event-sourcing
Event Sourcing Cqrs Examples
Event Sourcing and CQRS in practice.
Stars: ✭ 265 (-4.33%)
Mutual labels:  event-sourcing, ddd, cqrs
Learning.EventStore
A framework for CQRS, Eventsourcing, and messaging that uses Redis pub/sub for messaging and offers event persistence in Redis, SQL Server, or PostgreSQL.
Stars: ✭ 58 (-79.06%)
Mutual labels:  cqrs, eventstore, event-sourcing
Aggregates.net
.NET event sourced domain driven design model via NServiceBus and GetEventStore
Stars: ✭ 261 (-5.78%)
Mutual labels:  eventstore, ddd, cqrs
order-demo
Axon demo - `Order Management` Information System - A part of the systems landscape https://github.com/fraktalio/courier-demo, https://github.com/fraktalio/restaurant-demo, https://github.com/fraktalio/order-demo
Stars: ✭ 72 (-74.01%)
Mutual labels:  cqrs, ddd, event-sourcing

Eventually

Event Sourcing for Rust


Collection of traits and other utilities to help you build your Event-sourced applications in Rust.

What is Event Sourcing?

Before diving into the crate's internals, you may be wondering what Event Sourcing is.

From eventstore.com introduction:

Event Sourcing is an architectural pattern that is gaining popularity as a method for building modern systems. Unlike traditional databases which only store and update the current state of data, event-sourced systems store all changes as an immutable series of events in the order that they occurred and current state is derived from that event log.

How does eventually support Event Sourcing?

eventually exposes all the necessary abstraction to model your Domain Entities (in lingo, Aggregates) using Domain Events, and to save these Events using an Event Store (the append-only event log).

For more information, check out the crate documentation.

You can also take a look at eventually-app-example, showcasing an example event-sourced microservice using HTTP transport layer.

All other questions are more than welcome on our Gitter chat.

Event Store backends

eventually provides the necessary abstractions for modeling and interacting with an Event Store.

These are the following officially-supported backend implementations:

Installation

Add eventually into your project dependencies:

[dependencies]
eventually = { version = "0.4.0", features = ["full"] }

Note on semantic versioning

This library is actively being developed, and prior to v1 release the following Semantic versioning is being adopted:

  • Breaking changes are tagged with a new MINOR release
  • New features, patches and documentation are tagged with a new PATCH release

Contributing

You want to contribute to eventually but you don't know where to start?

First of all, thank you for considering contributing ❤️

You can head over our CONTRIBUTING section to know how to contribute to the project, and — in case you don't have a clear idea what to contribute — what is most needed needed from contributors.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in eventually-rs by you, shall be licensed as MIT, without any additional terms or conditions.

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].