The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2018-05-15 22:05:13 -04:00
.idea Use dart2_constant 2018-05-15 22:05:13 -04:00
.vscode 71 2017-03-31 21:00:24 -04:00
example Use dart2_constant 2018-05-15 22:05:13 -04:00
lib Use dart2_constant 2018-05-15 22:05:13 -04:00
performance/hello HTTP ResponseContext works 2018-02-07 00:36:24 -05:00
test Use dart2_constant 2018-05-15 22:05:13 -04:00
tool Fix travis 2017-08-15 19:08:24 -04:00
.gitignore Re-designed exception 2016-12-08 17:46:23 -05:00
.travis.yml Fixed Travis 2017-03-31 21:03:35 -04:00
analysis_options.yaml Working on 1.0.8, including performance tuning 2017-08-03 12:40:21 -04:00
CHANGELOG.md Use dart2_constant 2018-05-15 22:05:13 -04:00
LICENSE Pre-reflect 2016-12-30 20:46:41 -05:00
pubspec.yaml Use dart2_constant 2018-05-15 22:05:13 -04:00
README.md Update example 2018-04-06 15:56:14 -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_framework/angel_framework.dart';

main() async {
  var app = new Angel();

  // Index route. Returns JSON.
  app.get('/', () => 'Welcome to Angel!');

  // Accepts a URL like /greet/foo or /greet/bob.
  app.get('/greet/:name', (String name) => 'Hello, $name!');

  // Pattern matching - only call this handler if the query value of `name` equals 'emoji'.
  app.get('/greet', (@Query('name', match: 'emoji') String name) => '😇🔥🔥🔥');

  // Handle any other query value of `name`.
  app.get('/greet', (@Query('name') String name) => 'Hello, $name!');

  // Simple fallback to throw a 404 on unknown paths.
  app.use((RequestContext req) async {
    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');
}