platform/bin/server.dart

25 lines
621 B
Dart
Raw Normal View History

2016-04-22 02:56:21 +00:00
import 'dart:async';
import 'dart:io';
import 'package:angel/angel.dart';
import 'package:angel_framework/angel_framework.dart';
main() async {
2016-06-23 21:54:10 +00:00
runZoned(startServer, onError: onError);
}
startServer() async {
2016-04-29 01:22:53 +00:00
Angel app = await createServer();
2016-06-23 21:54:10 +00:00
InternetAddress host = new InternetAddress(app.properties['host']);
int port = app.properties['port'];
await app.startServer(host, port);
print("Angel server listening on ${host.address}:${port}");
}
2016-04-22 02:56:21 +00:00
2016-06-23 21:54:10 +00:00
onError(error, [StackTrace stackTrace]) {
stderr.writeln("Unhandled error occurred: $error");
if (stackTrace != null) {
stderr.writeln(stackTrace);
}
}