The Protevus Platform: Unified Full-Stack Development
https://protevus.com
.idea | ||
.vscode | ||
example | ||
lib | ||
performance/hello | ||
test | ||
tool | ||
.gitignore | ||
.travis.yml | ||
analysis_options.yaml | ||
CHANGELOG.md | ||
LICENSE | ||
pubspec.yaml | ||
README.md | ||
TODO.md |
angel_framework
A high-powered HTTP server with support for dependency injection, sophisticated routing and more.
This is the core of the Angel framework. To build real-world applications, please see the homepage.
import 'package:angel_framework/angel_framework.dart';
main() async {
var app = new Angel();
app
..get('/hello', (req, res) {
res.write('world!');
})
..post('/date', () => new DateTime.now().toString());
await app.startServer();
}