COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20200612073744/https://github.com/topics/ddd-example
Here are
52 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
Jun 11, 2020
Java
DDD patterns implemented following TDD
Updated
Jun 11, 2020
TypeScript
Domain Driven Design. Examples focuses on key concept of ddd like Entities, Aggregate root, Repository, Value Objects & ACL.
Updated
Apr 26, 2018
Java
API for patient registration and scheduling a consultation using domain driven design
Use DomainDrivenDesign to develop my blog
Updated
Sep 25, 2017
JavaScript
DDD sample, a minimized condition order system.
Updated
Jul 29, 2018
Java
CQRS+ES and DDD framework for .NET
Updated
Feb 13, 2020
Python
The base-classes for DDDomain objects (Entities, valuetypes, aggregates)
DDD example for Play Framework (Domain Driven Design)
Updated
Oct 11, 2019
JavaScript
This repo contains a sample project explains the fundamental layers in Domain Driven Design (DDD)
Hexagonal Architecture Application with CakePHP and a DIC - Could be used as a template in theory but for now its a learning project
An example of the Domain Driven Design implemented in Typescript.
Updated
Apr 4, 2020
Shell
Um projeto de exemplo, que mostra como implementar camadas de serviço num projeto Laravel, SEM implementar Repository Pattern.
Simple Example ASPNET Core 2 Web API with SQL Server, both running on Docker
A Domain Driven Design(DDD) example project with .NET Core 2+
Updated
Sep 25, 2019
JavaScript
Implementing Domain Driven Design in Laravel project
Creating a basic project via Domain Driven Design
Updated
Apr 20, 2020
Java
Java Clean DDD Architecture Example
Updated
May 19, 2020
Java
A Domain Driven Design exercise around a Sports Court Booking application
Updated
Jan 24, 2018
Kotlin
A commenting API service, run on Google App Engine and some Google Cloud Platform services, based on Clean Architecture, Domain Driven Design and Microservices Architecture
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