Socket
Socket
Sign inDemoInstall

js-cqrs-es-domain-module

Package Overview
Dependencies
50
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

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.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

js-cqrs-es-domain-module

This is an example domain module to help describe implementation guidelines when leveraging the js-cqrs-es library. This is developed in parallel to prove the Hive Pattern theory. It is the structure that the Hive Stack Components are built upon.

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 far more portable than it would have otherwise been. This is fine for smaller domain models. To manage complex domain models, see the advanced use cases below.

module
    |- projection
    |   |- denormalizer
    |   |   `- Denormalizers
    |   `- store
    |       `- Mongoose Schemas
    `- domain
        |- schema
        |   `- Schemas
        |- model
        |   |- Entities
        |   `- Value Objects
        `- aggregate
            `- Aggregate namespaces { class, commands, events, handlers }

Advanced Use Cases

For larger domain models, an even greater degree of separation with multiple domain modules is strongly recommended. Teams will maintain their own domain modules in their area of responsibility for the overall domain model.

Another strong recommendation is to separate the domain module into multiple modules to manage dependencies and portability better. Commands should be put in their own module so that they can be reused in the UI layer. Projections should also be split out into their own module as well because of the extra DB dependencies. Here is an example of how these multiple modules could be defined:

commands-module
    |- Commands
    |
    `- dependencies
        `- js-cqrs-es

domain-module
    |- Schemas
    |- Entities
    |- Value Objects
    |- Aggregate namespaces { class, events, handlers }
    |
    |- dependencies
        `- commands-module

projections-module
    |- Denormalizers
    |- Projections
    |
    `- dependencies
        |- domain-module
        `- odm-framework
  • NOTE: This approach will require you to use the Hive Stack starter kits rather than the Docker base images.

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. The data is denormalized on the Consumer side to represent the complete Post and tracks the number of Views each Post has received. 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.

js-cqrs-es contrived example domain model

FAQs

Last updated on 07 May 2017

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc