Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-cqrs-es-domain-module

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-cqrs-es-domain-module

An example domain module to help describe implementation guidelines when leveraging js-cqrs-es.

  • 0.0.1-beta.1
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

js-cqrs-es-domain-module

This is an example domain module to help describe implementation guidelines when leveraging the js-cqrs-es framework.

Structure

The structure of the domain module is defined below. This is the general structure that the Producer, Consumer, and Stream Processor services follow by default. Again, this is a suggested structure to keep domain logic separate from application/infrastructure logic because it makes the code more far more portable than it would have otherwise been. For larger domain models, an even greater degree of separation with multiple domain modules is recommended. Teams will maintain their own domain modules in their area of responsibility in the domain model.

module
    |- projection
    |   |- Projections
    |   `- (etc.)
    `- domain
        |- model
        |   |- Entities
        |   |- Value Objects
        |   `- (etc.)
        `- aggregate
            |- Aggregate namespaces { class, commands, events, handlers }
            `- (etc.)

Example

The example provided here is an attempt to showcase as much of the features of the js-cqrs-es framework as possible. It is a contrived representation of a Twitter Tweet Content aggregate and an analytics View value object to track views over time. This is also the default domain module applied to the Hive Stack for testing implementation details. I've provided a diagram for the domain model below.

contrived example domain model

  • NOTE: To be clear, the Content aggregate handles a small amount of de-normalization to track views on the Consumer. Read more about why.

FAQs

Package last updated on 02 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc