Here are
60 public repositories
matching this topic...
Full Modular Monolith application with Domain-Driven Design approach.
A Kubernetes-based microservices application on service mesh
Sample .NET Core REST API CQRS implementation with raw SQL and DDD using Clean Architecture.
Jivejdon is a Domain Driven Design appication with CQRS/ES/Clean/Hexagonal architecture
Updated
Sep 16, 2020
Java
🟨 TypeScript DDD Skeleton: Bootstrap your new projects or be inspired by this example project
Updated
Sep 16, 2020
TypeScript
♨️ DDD in Java skeleton & examples. Course:
Updated
Sep 11, 2020
Java
DDD patterns implemented following TDD
Sample implementation and comparison of various approaches to building DDD applications. Useful as a baseline to quickly start a DDD dot net project.
Domain Driven Design. Examples focuses on key concept of ddd like Entities, Aggregate root, Repository, Value Objects & ACL.
Updated
Apr 26, 2018
Java
CQRS+ES and DDD framework for .NET
API for patient registration and scheduling a consultation using domain driven design
The base-classes for DDDomain objects (Entities, valuetypes, aggregates)
Updated
Feb 13, 2020
Python
Use DomainDrivenDesign to develop my blog
Updated
Sep 25, 2017
JavaScript
DDD sample, a minimized condition order system.
Updated
Jul 29, 2018
Java
Tutorial on DDD (Domain-Driven Design), by building a Web App with the theme "Personal Finance Management". Adapted from a group project in university.
Updated
Jul 13, 2020
Java
This repo contains a sample project explains the fundamental layers in Domain Driven Design (DDD)
DDD example for Play Framework (Domain Driven Design)
Updated
Jun 18, 2020
JavaScript
Um projeto de exemplo, que mostra como implementar camadas de serviço num projeto Laravel, SEM implementar Repository Pattern.
Hexagonal Architecture Application with CakePHP and a DIC - Could be used as a template in theory but for now its a learning project
This example project was created for be inspired but remember it's work in progress
An example of the Domain Driven Design implemented in Typescript.
Updated
Sep 10, 2020
Shell
Implementing Domain Driven Design in Laravel project
A Domain Driven Design(DDD) example project with .NET Core 2+
Updated
Sep 25, 2019
JavaScript
Simple Example ASPNET Core 2 Web API with SQL Server, both running on Docker
Creating a basic project via Domain Driven Design
Updated
Apr 20, 2020
Java
Improve this page
Add a description, image, and links to the
ddd-example
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
ddd-example
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Create a new base class (ie;
ValueObject<PropertyType>) that can be inherited to create a value object concrete definition.Value objects are a core concept of DDD and represent things that are identified by their value rather than their hash/id/reference etc. See: https://martinfowler.com/bliki/ValueObject.html
There're already some examples on the web on this practice in typescript (eg h