angel_framework 1.1.2 copy "angel_framework: ^1.1.2" to clipboard
angel_framework: ^1.1.2 copied to clipboard

outdatedDart 1 only

A high-powered HTTP server with DI, routing and more.

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

  var http = new AngelHttp(app);
  var server = await app.startServer('127.0.0.1', 3000);
  print('Listening at http://${server.address.address}:${server.port}');
}