angel_framework 1.0.0-dev.68 copy "angel_framework: ^1.0.0-dev.68" to clipboard
angel_framework: ^1.0.0-dev.68 copied to clipboard

outdated

Core libraries for the Angel framework.

angel_framework #

pub 1.0.0-dev.68 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();
}