platform/README.md

28 lines
917 B
Markdown
Raw Normal View History

# angel_framework
2016-06-21 22:56:04 +00:00
2017-06-19 01:53:51 +00:00
[![Pub](https://img.shields.io/pub/v/angel_framework.svg)](https://pub.dartlang.org/packages/angel_framework)
2016-12-19 01:43:35 +00:00
[![build status](https://travis-ci.org/angel-dart/framework.svg)](https://travis-ci.org/angel-dart/framework)
2016-06-21 22:56:04 +00:00
2017-04-01 01:00:24 +00:00
A high-powered HTTP server with support for dependency injection, sophisticated routing and more.
2017-01-12 01:52:06 +00:00
2017-06-19 01:53:51 +00:00
This is the core of the [Angel](https://github.com/angel-dart/angel) framework.
To build real-world applications, please see the [homepage](https://angel-dart.github.io).
2017-01-12 01:52:06 +00:00
```dart
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());
2018-02-07 05:52:20 +00:00
var http = new AngelHttp(app);
var server = await app.startServer('127.0.0.1', 3000);
print('Listening at http://${server.address.address}:${server.port}');
2017-01-12 01:52:06 +00:00
}
2017-03-06 00:52:16 +00:00
```