A production-ready dart backend framework.
Angel3 originated from a fork of the archived Angel framework in support of Dart SDK 2.12.x or later. It is a full-stack backend framework in Dart that aims to streamline development by providing many common features out-of-the-box in a consistent manner. The codebase has been completely migrated and refactored to support null safety. One of the main goal is to enable developers to build both frontend and backend in dart language. Angel3 is designed as a collection of plugins that enable developers to pick and choose the parts needed for their projects. A series of starter templates are also provided for quick start and trial run with Angel3. Visit our website to learn more.
The available features in Angel3 includes:
- OAuth2 Authentication
- WebSocket
- HTTP/2
- HTTP Streaming
- GraphQL
- Markdown, Mustache, Jinja and JAEL as Server-Side HTML Rendering
- ORM support for PostgreSQL and MySQL
- MongoDB, Sembast and RethinkDB as storage
- Redis as cache
The packages directory contains specialized sub-packages that act as individual plugins or modules. Depending on the needs of a project, a developer can plug in specific packages.
They can broadly be categorized as follows:
-
Core Framework & Request Handling
- framework: The foundational package (angel3_framework). It provides the base HTTP server, request/response contexts, dependency injection container, and middleware pipelines.
- route: The routing engine handling URL matching and route parameters.
- container: Dependency Injection (DI) system for resolving services.
- configuration: Utilities for loading configuration files (YAML, JSON, .env).
-
Data Modeling & Persistence (ORM) The framework provides an extensive ORM (angel3_orm) ecosystem with generators and database drivers:
- orm: Houses the main ORM library, code generator (angel_orm_generator), and SQL dialects for MySQL and PostgreSQL.
- model: Base model abstractions for data entities.
- serialize: Libraries to serialize/deserialize data to and from JSON using code generation (angel_serialize_generator).
- mongo, rethinkdb, sembast: Specialized drivers for interacting with MongoDB, RethinkDB, and Sembast (a NoSQL local database).
-
Authentication & Security
- auth: Core authentication abstractions and strategies (local, token-based).
- auth_oauth2 & oauth2: Out-of-the-box support for OAuth2 authentication flows.
- security: Security middleware (rate limiting, standard headers, etc.).
- cors: Middleware to handle Cross-Origin Resource Sharing effortlessly.
-
Frontend & Template Rendering Support for processing and returning HTML views to the client:
- jael: The Jael template engine specifically built for Angel, capable of HTML manipulation. It is split into language servers, preprocessors, and web renderers.
- mustache, jinja, markdown: Wrappers/integrations for rendering Mustache templates, Jinja templates, or parsing Markdown into HTML.
- html & seo: Utilities for building out HTML responses and optimizing for search engines.
-
Additional Utilities and APIs
- websocket: Integration for real-time bidirectional communication.
- client: A client-side library designed to interface seamlessly with Angel3 backends directly from Dart/Flutter.
- cache & redis: Caching interfaces with Redis integration to improve response times.
- hot & production: Tooling for hot-reloading the server during development, and managing clustering/multi-threading under production loads.
- test & mock_request: Testing utilities for mocking HTTP requests without spinning up a real server.
- file_service & static: For serving static assets (images, CSS, JS) efficiently.
Angel3 packages are published under angel3_ prefix on pub.dev. These packages have passed all of their respective test suites before going live. The development work are currently focused on:
- Keeping the packages with
angel3_prefix in sync with Dart SDK releases- Remove and replace deprecated classes and methods while keeping it backward compatible
- Refactor the code to use new language features
- Fix and resolve reported issues
- Performance optimization
- Improve on existing features, unit test, user guide and examples
- Add new features
- Updated
angel3_packages to require dart >= 3.11.0 - Updated to
melos:7.3 - Updated code generator to use
analyzer8.4.x - Removed
angel3_orm_test
Branch: feature/v9
- Dart version : 3.11.0 or later.
- Status : Early Development
- Notes : Major refactoring on going with breaking changes targeting
9.0.0release- Restructre and rename packages
- Removal of dependency on
Mirror - Fix long overdued performance issues
Branch: master
- Dart version : 3.11.0 or later.
- Publish : Refer to all packages with
angel3_prefix on pub.dev. - Status : Production
- Notes : Use this branch for all PR submission
Starting with release 8.5.0. All subsequence releases published to pub.dev will be available on a release branch. The branch name will adopt the following naming conventions, release/<version>. For example: release/8.5 branch is for release version 8.5 on pub.dev.
- Remove the use of Mirror
- Performance optimsation
- Out of the box OIDC and SAML2 support
- Integrated Open API 3 support
- Expand ORM to support
- SQLite
- Multi tenant
- Reverse Engineering
-
Download and install Dart. Minimum 3.11.0.
-
Clone one of the following starter projects:
-
Run the project in development mode (hot-reloaded is enabled on file changes).
dart --observe bin/dev.dart
-
Run the project in production mode (hot-reloaded is disabled).
dart bin/prod.dart
-
Run as docker. Edit and build the image with the provided
Dockerfilefile. -
Next, refer to the developer guide to learn more about Angel3 framework.
-
Download and install Dart
-
Install the Angel3 CLI:
dart pub global activate angel3_cli
-
On terminal, create a new project:
angel3 init hello
-
Run the project in development mode (hot-reloaded is enabled on file changes).
dart --observe bin/dev.dart
-
Run the project in production mode (hot-reloaded is disabled).
dart bin/prod.dart
-
Run as docker. Edit and build the image with the provided
Dockerfilefile. -
Next, refer to the User Guide to learn more about Angel3 framework.
Refer to Angel3 Performance Test Suite for more information. It is still in early stage, but eventually will contain test cases for running load testing with Locust on various key features of Angel3 framework. These test cases can serve as a foundation for building performance tests for any applications developed with Angel3 framework.
An offical performance benchmark can be found at TechEmpower Framework Benchmarks
The test cases are build using standard Angel3 ORM template for PostgreSQL and MySQL databases. The result are used for improving Angel3 framework with respect to other frameworks. The following test cases will be added in the subsequent update to this benchmark.
- Cache with Redis
- Angel3 with MongoDB
Refer to User Guide for more detailed information on the available features of Angel3 framework.
Take various applications at Examples for a spin to get a feel of what Angel3 framework can do.
Join us on Discord.
If you are interested in contributing to Angel3 framework please check out the Contribution Guide.
-
Fork angel repository
-
Clone the project to local and create a new branch
git clone https://github.com/<your_repo_name>/angel.git git checkout -b feature/<your_branch_name>
-
Download and install Dart 3
-
Install
melos:7.3dart pub global activate melos
-
Run
melos exec "dart pub upgrade"to update all the packages -
Contribute changes to the desired packages
If you like this project and interested in supporting its development work, you are welcome to make a donation via the following links.
We offer professional paid support for teams and developers using Angel3 framework. Our support services are designed to help you build faster, deploy with confidence, and scale reliably, whether you’re just getting started or running the framework in production. The fund collected will go into continued improvements of the framework.
- Architecture and best-practice guidance
- Framework setup, configuration, and upgrades
- Debugging runtime, performance, or build issues
- Production readiness (scaling, monitoring, deployment)
- Code reviews and design feedback
- Custom feature guidance and extensions
- Teams using or planning to use
Angel3in production - Developers who want expert guidance from people who maintain the framework
- Migration from other dart or none dart framework
We offer flexible plans depending on your needs:
- Hourly support for one-off issues
- Monthly retainers for ongoing help
- Consulting sessions for architecture and planning
Support is available via email, chat, and scheduled calls.
Paid support ensures you get reliable, professional assistance when it matters most.
If you’re interested in paid support, contact us at [[email protected]] with your contact and use cases. We will get back within 24 hours.
