All Projects → cqrsfk → Core

cqrsfk / Core

Licence: agpl-3.0
CQRS-DDD-Actor framework for Node.js

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Core

Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
Stars: ✭ 414 (+51.65%)
Mutual labels:  actors, ddd, cqrs
delta
DDD-centric event-sourcing library for the JVM
Stars: ✭ 15 (-94.51%)
Mutual labels:  cqrs, ddd, distributed
Event Sourcing Cqrs Examples
Event Sourcing and CQRS in practice.
Stars: ✭ 265 (-2.93%)
Mutual labels:  ddd, cqrs
coreddd
A set of open-source .NET libraries helping with domain-driven design (DDD) and CQRS
Stars: ✭ 68 (-75.09%)
Mutual labels:  cqrs, ddd
Aggregates.net
.NET event sourced domain driven design model via NServiceBus and GetEventStore
Stars: ✭ 261 (-4.4%)
Mutual labels:  ddd, cqrs
CQELight
CQELight is an entreprise grade extensible and customisable framework for creating software with CQRS, DDD & Event Sourcing patterns
Stars: ✭ 21 (-92.31%)
Mutual labels:  cqrs, ddd
ftgogo
FTGOGO - event-driven architecture demonstration application using edat
Stars: ✭ 82 (-69.96%)
Mutual labels:  cqrs, ddd
csharp-ddd-skeleton
🦈✨ C# DDD Skeleton: Bootstrap your new C# projects applying Hexagonal Architecture and Domain-Driven Design patterns
Stars: ✭ 67 (-75.46%)
Mutual labels:  cqrs, ddd
food-ordering-demo
Demo application focusing on the Food Ordering domain - Used in our video series
Stars: ✭ 28 (-89.74%)
Mutual labels:  cqrs, ddd
OpenSleigh
OpenSleigh is a Saga management library for .NET Core.
Stars: ✭ 198 (-27.47%)
Mutual labels:  cqrs, ddd
DDD
Domain-Driven Design example
Stars: ✭ 116 (-57.51%)
Mutual labels:  cqrs, ddd
eshopzero
.Net Microservice Application
Stars: ✭ 27 (-90.11%)
Mutual labels:  cqrs, ddd
Cart
No description or website provided.
Stars: ✭ 22 (-91.94%)
Mutual labels:  cqrs, ddd
Plastic
This project provides encapsulation of things like Domain, Application Rules, Business Rules or Business Logic in Application.
Stars: ✭ 30 (-89.01%)
Mutual labels:  cqrs, ddd
pdo-snapshot-store
PDO Snapshot Store
Stars: ✭ 24 (-91.21%)
Mutual labels:  cqrs, ddd
iam-ddd-cqrs-es-nestjs
Identity and Access Management
Stars: ✭ 34 (-87.55%)
Mutual labels:  cqrs, ddd
typescript-ddd-course
🔷🔖 TypeScript DDD Course: Learn Domain-Driven Design in TS lesson by lesson
Stars: ✭ 28 (-89.74%)
Mutual labels:  cqrs, ddd
standard-projections
Standard projections to use with Prooph EventStore
Stars: ✭ 14 (-94.87%)
Mutual labels:  cqrs, ddd
Clean-Architecture-Template
Configurable Clean Architecture template containing the DDD + CQRS approach for .NET Core applications.
Stars: ✭ 14 (-94.87%)
Mutual labels:  cqrs, ddd
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.38%)
Mutual labels:  cqrs, ddd

MVP

Root API

class User extends Root {
  static version = 1.0;
  static type = "User";

  constructor() {}

  @Action({ validater })
  changeAction(name) {

  }

  @Mutation({ event, validater })
  changeMutation(){

  }

  @Changer({event});
  private change(event){

  }

  

}
const domain = new Domain();
domain.reg(User);

const user = await domain.create("User", ["name"] );

await user.changeAction("leo");

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