The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2018-02-06 22:48:26 -05:00
.idea Made Angel.serializer public 2018-02-06 22:48:26 -05:00
.vscode 71 2017-03-31 21:00:24 -04:00
example 1.1.0-alpha+5 2017-10-04 10:09:12 -04:00
lib Made Angel.serializer public 2018-02-06 22:48:26 -05:00
performance/hello +9 2017-11-28 13:14:50 -05:00
test +9 2017-11-28 13:14:50 -05: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 Added autoSnakeCaseNames to MapService 2018-02-06 22:24:44 -05:00
LICENSE Pre-reflect 2016-12-30 20:46:41 -05:00
pubspec.yaml Added autoSnakeCaseNames to MapService 2018-02-06 22:24:44 -05:00
README.md 1.0.4 2017-06-18 21:53:51 -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();

  app
    ..get('/hello', (req, res) {
      res.write('world!');
    })
    ..post('/date', () => new DateTime.now().toString());

  await app.startServer();
}