Home
MODULAR .NET DEVELOPMENT KIT
Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles.
bITdevKit brings together domain modeling, requests, messaging, queueing, storage, scheduling, and presentation patterns into a practical toolkit for real-world systems built with clean architecture and DDD.
Choose a start path¶
Learn the devkit
Start with the GettingStarted example, the DDD introduction, and the guided first-read path.
Scaffold a solution
Install the templates and create a new solution or module that already follows the expected structure.
Work with AI agents
Use the `bdk mcp` server to give coding agents official DevKit docs plus live runtime diagnostics while they implement features.
Inspect running hosts
Open the built-in developer dashboard for health, metrics, logs, jobs, queueing, identity, console commands and MCP visibility.
Explore examples
Move from the focused GettingStarted example to broader scenarios like DoFiesta and EventSourcingDemo.
Read the docs
Browse the documentation map by capability area and feature-specific guide.
Capabilities for real-world application needs¶
Browse the full documentation overview
Domain
Aggregates, value objects, typed ids, specifications, policies and event-driven domain modeling.
Application
Commands, queries, handlers, mapping and explicit application orchestration with clear boundaries.
Requester & Notifier
In-process dispatching for request/response and publish/subscribe flows with reusable pipeline behaviors.
Messaging
Durable asynchronous messaging and outbox-backed delivery for decoupled application communication.
Queueing
Single-consumer work processing with operational visibility, retry/archive control and broker abstractions.
Pipelines
Structured, observable multi-step workflows for in-process execution with low-friction defaults.
Orchestrations
Durable, stateful workflows with explicit states, activities, signals, timers and operational endpoints.
Storage
Blob, document and file storage abstractions with monitoring, behaviors and provider-based extensibility.
Jobs
Code-first durable scheduling with triggers, batches, history, maintenance jobs and source-level integrations.
Presentation
Minimal API endpoints, console commands, dashboards, CORS, exception handling and Blazor application state support.
Dashboards
Live local pages for runtime health, metrics, retained logs, jobs, queueing and MCP handler/session insight.
AI & Agents
Local MCP support for coding agents that can read official DevKit docs, follow patterns and inspect the running app while coding.
Why not just plain ASP.NET Core + MediatR + EF Core?¶
More than a library stack
bITdevKit provides a coherent model for results, rules, request flow, modules, and operational infrastructure instead of leaving each project to compose its own conventions.
Developer guidance with reusable defaults
Examples, templates, and aligned documentation reduce the amount of architectural assembly work needed at project start.
Read the full why bITdevKit page
Designed for modular, maintainable .NET systems¶
ARCHITECTURE
Clean architecture, modular vertical slices and DDD by default.
bITdevKit is shaped around clear boundaries between domain, application, infrastructure and presentation. It supports modular systems where cross-cutting building blocks stay reusable while business logic remains explicit and testable.
See the architecture mapExample applications¶
GettingStarted
The canonical onboarding project for learning the devkit through a focused end-to-end example before building your own solution.
Open exampleDoFiesta
A richer example application used throughout the repository to show operational, messaging, scheduling and UI integration scenarios.
Open exampleEventSourcingDemo
A focused example for exploring how event-sourcing-oriented concepts fit into the broader development kit.
Open exampleTemplates for solutions and modules¶
SCAFFOLDING
Start from a working structure instead of assembling it by hand.
`bITdevKit` ships with .NET templates that can scaffold a full solution or add new modules using the kit's architectural conventions. That makes it easier to move from learning to a real project without rebuilding the same structure manually.
Explore the templates