The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
thosakwe 93c0d9f2bb +3
2017-04-26 18:55:47 -04:00
.idea +3 2017-04-26 18:55:47 -04:00
.vscode 71 2017-03-31 21:00:24 -04:00
example 72! 2017-04-02 15:14:10 -04:00
lib +3 2017-04-26 18:55:47 -04:00
test 74 2017-04-04 04:35:36 -04:00
tool More Travis 2017-03-31 21:04:45 -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
LICENSE Pre-reflect 2016-12-30 20:46:41 -05:00
pubspec.yaml +3 2017-04-26 18:55:47 -04:00
README.md +3 2017-04-26 18:55:47 -04:00
TODO.md Got rid of 'part', added 'export'. Also fixed attachment 2016-09-15 15:53:01 -04:00

angel_framework

pub 1.0.2+3 build status

A high-powered HTTP server with support for dependency injection, sophisticated routing and more.

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();
}