platform/framework
Tobe O 609d06f66b Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56'
git-subtree-dir: framework
git-subtree-mainline: 6f6510ab27
git-subtree-split: 64d6729def
2020-02-15 18:12:48 -05:00
..
.idea Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
.vscode Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
example Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
lib Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
performance/hello Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
test Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
tool Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
.gitignore Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
.travis.yml Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
analysis_options.yaml Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
CHANGELOG.md Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
dev.key Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
dev.pem Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
LICENSE Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
pubspec.yaml Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
README.md Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00
TODO.md Add 'framework/' from commit '64d6729def5ffcf225a2c8f74fdf115218df1c56' 2020-02-15 18:12:48 -05:00

angel_framework

Pub build status

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_container/mirrors.dart';
import 'package:angel_framework/angel_framework.dart';

main() async {
    var app = Angel(reflector: MirrorsReflector());

    // Index route. Returns JSON.
    app.get('/', (req, res) => res.write('Welcome to Angel!'));
  
    // Accepts a URL like /greet/foo or /greet/bob.
    app.get(
      '/greet/:name',
      (req, res) {
        var name = req.params['name'];
        res
          ..write('Hello, $name!')
          ..close();
      },
    );
    
    // Pattern matching - only call this handler if the query value of `name` equals 'emoji'.
    app.get(
      '/greet',
      ioc((@Query('name', match: 'emoji') String name) => '😇🔥🔥🔥'),
    );
    
    // Handle any other query value of `name`.
    app.get(
      '/greet',
      ioc((@Query('name') String name) => 'Hello, $name!'),
    );
    
    // Simple fallback to throw a 404 on unknown paths.
    app.fallback((req, res) {
      throw AngelHttpException.notFound(
        message: 'Unknown path: "${req.uri.path}"',
      );
    });

    var http = AngelHttp(app);
    var server = await http.startServer('127.0.0.1', 3000);
    var url = 'http://${server.address.address}:${server.port}';
    print('Listening at $url');
    print('Visit these pages to see Angel in action:');
    print('* $url/greet/bob');
    print('* $url/greet/?name=emoji');
    print('* $url/greet/?name=jack');
    print('* $url/nonexistent_page');
}