The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2018-12-10 22:19:16 -05:00
.idea waterfall -> chain 2018-09-12 00:17:50 -04:00
.vscode 71 2017-03-31 21:00:24 -04:00
example 2.0.0-alpha.16 2018-12-10 22:19:16 -05:00
lib 2.0.0-alpha.16 2018-12-10 22:19:16 -05:00
performance/hello change body parsing 2018-12-08 23:18:31 -05:00
test 2.0.0-alpha.16 2018-12-10 22:19:16 -05:00
tool 2.0.0-alpha.11 2018-11-10 20:07:09 -05:00
.gitignore 1.1.3 2018-05-15 23:18:03 -04:00
.travis.yml Test against Dart 1.x 2018-06-08 03:09:54 -04:00
analysis_options.yaml +5 2018-06-22 23:29:38 -04:00
CHANGELOG.md 2.0.0-alpha.16 2018-12-10 22:19:16 -05:00
dev.key 2.0.0-alpha.11 2018-11-10 20:07:09 -05:00
dev.pem 2.0.0-alpha.11 2018-11-10 20:07:09 -05:00
LICENSE Pre-reflect 2016-12-30 20:46:41 -05:00
pubspec.yaml 2.0.0-alpha.16 2018-12-10 22:19:16 -05:00
README.md All tests pass 2018-08-21 14:50:43 -04:00
TODO.md Got rid of 'part', added 'export'. Also fixed attachment 2016-09-15 15:53:01 -04: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 = new 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 new AngelHttpException.notFound(
        message: 'Unknown path: "${req.uri.path}"',
      );
    });

    var http = new 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');
}