Modern Full-Stack Development for Delphi
Important
Dext Framework is currently in Version 1 Release Candidate (RC1).
Dext Framework is a native and integrated ecosystem for Delphi development.
It brings together Dependency Injection, ORM, Web Pipeline, and Testing into a single, high-performance architecture. Designed to eliminate the need for connecting isolated libraries and to drastically reduce boilerplate code, Dext handles the infrastructure complexity so your team can focus strictly on business logic.
Dext was specifically designed to solve the real-world pain points faced by Delphi developers:
- Web Applications: Develop complete web applications with Server-Side rendering using WebStencils or native templates integrated into the pipeline.
- High-Performance APIs: Build robust RESTful backends using Minimal APIs, Controllers, or generating direct endpoints with the
[DataApi]attribute. - Concurrency and Asynchrony: Use Dext Threading (Async Task, Cancellation Token, Async Rest Client) to create background routines and non-blocking workflows, replacing the complex manual usage of the
TThreadclass. - Mobile Backend (iOS/Android): Provide the integration, connectivity, and security infrastructure needed to support mobile applications efficiently.
- Legacy Modernization: Gradually integrate with old 3-tier systems (like DataSnap), ISAPI/Apache middlewares, or Desktop monoliths (VCL) without having to rewrite your 20-year-old ERP. Dext acts as a modern foundation within existing systems.
- Background Services and Microservices: Robust data extraction, high-performance scheduled tasks, and connectivity between applications.
See how Dext's structure simplifies complex flows into clean, typed, and object-oriented code. Exploring the framework's pillars:
Creating a high-performance endpoint integrated with Dependency Injection requires minimal effort:
program MyAPI;
uses Dext.Web;
begin
var App := WebApplication;
// Simple endpoint
App.MapGet('/hello', function: string
begin
Result := 'Hello from Dext! Modern full-stack for Delphi.';
end);
// Endpoint with native Automatic Dependency Injection (DI) and Model Binding
App.MapPost<TUserDto, IEmailService, IResult>('/register',
function(Dto: TUserDto; EmailService: IEmailService): IResult
begin
EmailService.SendWelcome(Dto.Email);
Result := Results.Created('/login', 'User successfully registered');
end);
App.Run(8080);
end.Automatic mapping via Convention over Configuration and structured properties for advanced relational mapping:
[Table]
[DataApi('/api/orders')] // Automatically exposed as a REST API (Zero-Code API)!
TOrder = class
private
FId: IntType;
FStatus: Prop<TOrderStatus>;
FNotes: StringType;
FTotal: Nullable<CurrencyType>;
FItems: Lazy<IList<TOrderItem>>;
public
[PK, AutoInc]
property Id: IntType read FId write FId;
property Status: Prop<TOrderStatus> read FStatus write FStatus;
property Notes: StringType read FNotes write FNotes;
// Smart Types to natively handle nulls, validation, and Lazy Loading
property Total: Nullable<CurrencyType> read FTotal write FTotal;
property Items: Lazy<IList<TOrderItem>> read FItems write FItems;
end;No more magic strings or broken queries at runtime. Dext generates the Abstract Syntax Tree (AST) of your code:
// Complex query with Joins and Filters interpreted as clean code
var O := Prototype.Entity<TOrder>;
var Orders := DbContext.Orders
.Where((O.Status = TOrderStatus.Paid) and (O.Total > 1000))
.Include('Customer') // Eager Loading
.Include('Items')
.OrderBy(O.Date.Desc)
.Take(50)
.ToList;
// High-performance Bulk Update directly in the DBMS without loading records into memory
DbContext.Products
.Where(Prototype.Entity<TProduct>.Category = 'Outdated')
.Update
.Execute;The complexity of TThread transformed into modern asynchronous chained pipelines. The Fluent Async Tasks abstraction delivers superpowers over the PPL (Parallel Programming Library) and Future<T>, allowing pipelines based on the Thread Pool:
var CTS := TCancellationTokenSource.Create;
TAsyncTask.Run<TStream>(
function: TStream
begin
// Requests a free Task from the Thread Pool for network download
Result := AsyncClient.DownloadStream('https://api.company.com/data', CTS.Token);
end)
.Then<TReport>(
function(Stream: TStream): TReport
begin
// Chains a new processing Task as soon as the previous one finishes
Result := JsonSerializer.Deserialize<TReport>(Stream);
Stream.Free;
end)
.OnComplete(
procedure(Report: TReport)
begin
// Automatically and safely synchronizes the return with the Original Thread (UI)
ShowReport(Report);
end)
.OnException(
procedure(Ex: Exception)
begin
ShowError('Process failed: ' + Ex.Message);
end)
.Start;Structured environment for registering services and external configurations using JSON, YAML, or Environment Variables:
var Builder := WebApplication.CreateBuilder;
// Load hierarchical configuration sources
Builder.Configuration
.AddJsonFile('appsettings.json')
.AddYamlFile('config.yaml')
.AddEnvironmentVariables;
Builder.Services
// Natively binds configuration to a strongly-typed class
.Configure<TDatabaseSettings>(Builder.Configuration.GetSection('Database'))
// Complete Dependency Injection for repositories and services
.AddSingleton<IEmailService, TSmtpEmailService>
.AddScoped<IOrderRepository, TDbOrderRepository>;
var App := Builder.Build;The TEntityDataSet converts the ORM's object orientation (POCOs) into DataSet-compatible structures consumable by your VCL grids, data-aware components, and Design Time reports, without losing performance!
Design-Time Support: Native TFields creation from entity code and record visualization directly in the IDE.
Dext is composed of flexible and minimalist modules. You retain full control over the architecture and include only the vital components for your solution:
- Core Technologies: Enterprise-grade Dependency Injection (Singleton, Transient, Scoped), optimized Reflection cache, advanced event support, and IOptions.
- Clean Native Collections: Elimination of memory leaks using interfaces (
IList,IDictionary). Dext solves the classic Generic Bloat with Binary Code Folding, significantly reducing huge binaries. - Data Access (ORM): Robust management via Unit of Work, automatic transaction control (DAO support), and multi-database support.
- Web Frameworks: Embedded HTTP server, Minimal APIs, Controllers, DataAPI REST generator, modular middlewares, WebSockets (Hubs), native CORS, and extremely fast rendering.
- Testing & Quality: Coupled TestContext framework, automated Mock Objects (
TAutoMocker), test coverage, and reporting.
See the full features list and Dext modules
Dext distribution prioritizes minimalism, without opaque installers that inject clutter into your system directory:
- Download the source code:
git clone https://github.com/cesarliws/dext.git - Add
Library Pathsin Delphi referencing Dext's main modules. - Compile the project through the
Sources\DextFramework.groupprojgroup.
Read Detailed Setup and Installation Instructions
- Delphi: 10.3 Rio or higher (Full support for 10.4, 11, and 12 Athens).
- Legacy Versions: Can be compiled on 10.1 Berlin with limitations.
- Dependencies: No mandatory external dependencies (uses native components).
Delphi has historically been chosen for domains that did not tolerate overheads; however, recent frameworks have adopted unrestrained allocation patterns based on developer convenience. Dext returns the performance while maintaining modern ease of use:
- Zero-Allocation Pipeline: When the server exposes JSON or data, common components instantiate and process gigabytes of temporary
strings, causing deadly spikes in the Memory Manager and forced pauses. Dext bypasses classic conversion through Direct-to-JSON streaming, reading entire blocks via immutable memory structures (TSpan). - Hardware Affinity (SIMD): The underlying layers benefit from parallel computing using SIMD (Single Instruction, Multiple Data) in parsing to ensure response in very few CPU ticks.
Dext is developed and maintained publicly and provided under the Apache License 2.0. It is fully and unconditionally free (for open-source scenarios or strict enterprise/commercial development). Create billion-dollar software, distribute, or encapsulate at will. No catches.
Dext is driven by the community. Whether you are an enthusiastic user or an infrastructure-focused developer, there are many ways to help:
- Spread the word: If Dext is useful to you, please consider leaving a star on the repository. This helps the project gain visibility and attract more contributors.
- Share your Success: Built something amazing with Dext? We would love to hear about your use case. Share your story in the Discussions.
- For Users: Start using the framework in your projects and give us real feedback on your experience.
- For Contributors: Report instabilities (issues), suggest improvements, or send a pull request.
- Follow the Contribution Instructions
- Want to submit new Features? Follow the Features and Improvements Workflow
Check out our Roadmap metrics and steps, and see our Code of Conduct to keep this hub welcoming.
Stop rebuilding foundations and spend energy on your customers' problems. Dext takes care of the rest.
Built with pride for the entire Delphi Ecosystem.


