8d2f0e9d02
I generated an application with `angel init` When running the application in a docker container, I get the error. `file:///root/.pub-cache/hosted/pub.dartlang.org/angel_configuration-2.1.0/lib/angel_configuration.dart:62:1: Error: 'Future' expects 0 type arguments.` This is due to the fact that *angel_configuration.dart* does not import 'dart:async'. This works when using the latest dart version. [see](https://github.com/dart-lang/sdk/issues/26162) [see](https://github.com/dart-lang/sdk/issues/34384) [see](https://github.com/dart-lang/sdk/issues/34237) |
||
---|---|---|
.github | ||
.idea | ||
.vscode | ||
bin | ||
config | ||
lib | ||
test | ||
views | ||
web | ||
.dockerignore | ||
.gitignore | ||
analysis_options.yaml | ||
Dockerfile | ||
LICENSE | ||
pubspec.yaml | ||
README.md |
A polished, production-ready backend framework in Dart.
About
Angel is a full-stack Web framework in Dart. It aims to streamline development by providing many common features out-of-the-box in a consistent manner.
With features like the following, Angel is the all-in-one framework you should choose to build your next project:
Installation & Setup
Once you have Dart installed, bootstrapping a project is as simple as running a few shell commands:
Install the Angel CLI:
pub global activate angel_cli
Bootstrap a project:
angel init hello
You can even have your server run and be hot-reloaded on file changes:
dart --observe bin/dev.dart
Next, check out the detailed documentation to learn to flesh out your project.
Examples and Documentation
Visit the documentation for dozens of guides and resources, including video tutorials, to get up and running as quickly as possible with Angel.
Examples and complete projects can be found here.
You can also view the API Documentation.
There is also an Awesome Angel 🔥 list.