Giter Site home page Giter Site logo

tokilabs / plow Goto Github PK

View Code? Open in Web Editor NEW
11.0 5.0 3.0 1.09 MB

Library for building DDD, ES and CQRS projects with TypeScript on Node

TypeScript 99.39% JavaScript 0.27% Shell 0.34%
ddd ddd-architecture framework event-sourcing cqrs cqrs-es cqrs-framework ddd-patterns

plow's Introduction

Plow

Get the soil read to grow awesomeness :)

Documentation (Can't call it a proper doc, but here it goes)

The building blocks

Domain Events

Events represent change. Specifically a change that has already happened. They are immutable. Events are used inside Entities to apply the change to it's internal state and are propagated throughout the system to notify interested parties that something happened.

Here's is a simple event implementation that represents the fact that a task was completed:

import { Guid } from '@cashfarm/lang';
import { IDomainEvent } from '@cashfarm/plow';

@DomainEvent
class TaskCompleted {
    constructor(
        public readonly taskId: Guid,
        public readonly done: boolean
    ) {}
}

Entity and AggregateRoot<TId> classes

You model your domain using Entities and Aggregate Roots (AR). Only AR classes should be used to modify the system state. Aggregate Roots should protect their internal state, expose semantic methods and modify their internal state by applying events. Here's a simple example of what an AR should look like:

import { Guid, isEmpty } from '@cashfarm/lang';
import { AggregateRoot, Apply, IDomainEvent, Event } from '@cashfarm/plow';

import { TaskCompleted } from '../events';

class Task extends AggregateRoot<Guid> {
    private _description: string;
    public get description(): string {
        return this._description;
    }

    private _done: boolean;
    public get done(): boolean {
        return this._done;
    }

    constructor(desc: string) {
        if (isEmpty(desc)) {
            throw new DomainException('Task description cannot be empty');
        }

        this._desc = desc;
        this._done = false;
    }

    public complete() {
        this.applyChange(new TaskCompleted(true));
    }

    public [Apply(TaskCompleted)](evt: TaskCompleted) {
        this._done = evt.done;
    }
}

Repositories

Repositories are how we call the classes that permanently store aggregate roots. If you are using GetEventStore to store your aggregates, all you need to do is extend the class EventSourcedRepositoryOf<TAggregate, TAggtId>;

If you are using Plow's container, you can simply inject IEventStore and IEventBus as they are already configured in the inversify container.

export class TaskRepository extends EventSourcedRepositoryOf<Task, Guid> {
  constructor(
    @inject(IEventStore) protected storage: IEventStore,
    @inject(IEventBus) eventBus: IEventBus
  ) {
    super(storage, Campaign, eventBus);
  }
}

Projections

A projection class implements methods that handle events with the intent of projecting the data to a read model. The read model is a denormalized databsed optimized for reading.

Here's an example of a projection that sums up the number of completed tasks

import { Handle } from '@cashfarm/plow';

import { TaskCompleted } from '../events';

@Projection(TaskCompleted) // This decorator will register the projection in the event bus
export class TaskProjections {
  constructor(
      @inject(TaskStore) private tasks: TaskStore,
      @inject(UserStore) private users: UserStore) {}

  public [Handle(TaskCompleted)](event: TaskCompleted): void {
    debug('Running projection for TaskCompleted');
    const task = this.tasks.findById(event.taskId);
    const user = this.users.findById(task.userId);

    user.completedTasks += 1;

    this.users.update(user);
  }
}

Changelog

0.4

  • Plow now has an internal inversify container for dependency injection
  • Use @Projection, @Controller and @DomainEvent to register the respective classes
  • No need for [Symbol.EventLoader]() and [Symbol.MAPPER]() methods

Roadmap

Sometime

  • create a generator (yeoman or vscode) to generate boilerplates for:
    • Stores and Repositories
    • events
    • AggregateRoots
    • Endpoints
    • Projections

plow's People

Contributors

leowerk avatar vrondelli avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

plow's Issues

Prevent accidental use

listen(topic: string, handler: (msg: any) => void): void;

The fact that the method will remove other listeners should be made clear in the method's name or via a mandatory parameter (e.g. removeOtherListeners: boolean)

In the second case, if removeOtherListeners is set to false forward call to subscribe

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.