The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2017-01-14 10:39:11 -05:00
.idea 42 2017-01-11 20:52:06 -05:00
lib Better errors 2017-01-14 10:39:11 -05:00
test NOW Alpha ready :) 2016-12-18 23:32:36 -05:00
.gitignore Re-designed exception 2016-12-08 17:46:23 -05:00
.travis.yml Finally switched to new router 2016-11-23 04:10:47 -05:00
LICENSE Pre-reflect 2016-12-30 20:46:41 -05:00
pubspec.yaml Better errors 2017-01-14 10:39:11 -05:00
README.md Better errors 2017-01-14 10:39:11 -05: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.0-dev.46 build status

Core libraries for the Angel Framework.

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