It is no longer practical to depend on a "god" package to import Angel; rather you can just import each component as needed.
Master package to install the current Angel framework. This package installs and exposes the Angel server framework, as well as the following plugins that make up the rest of the Angel application framework:
auth
compress
configuration
diagnostics
cors
errors
file_security
mongo
mustache
proxy
static
validate/server.dart
This package will also install the following, although it does not expose them:
route
is exposed by
framework
,
although it is not a plugin.
Every library included is well-documented. Happy coding!
import 'package:angel_common/angel_common.dart';
main() async {
var app = new Angel();
// ...
}