2019-07-17 18:57:51 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'package:angel_framework/angel_framework.dart';
|
|
|
|
import 'package:angel_framework/http.dart';
|
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
|
|
|
|
Future<void> apiConfigurer(Angel app) async {
|
|
|
|
app.get('/', (req, res) => 'Hello, API!');
|
|
|
|
app.fallback((req, res) {
|
|
|
|
return 'fallback on ${req.uri} (within the API)';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> frontendConfigurer(Angel app) async {
|
|
|
|
app.fallback((req, res) => '(usually an index page would be shown here.)');
|
|
|
|
}
|
|
|
|
|
|
|
|
main() async {
|
|
|
|
// Logging set up/boilerplate
|
2019-10-12 14:30:31 +00:00
|
|
|
hierarchicalLoggingEnabled = true;
|
2021-03-06 14:10:24 +00:00
|
|
|
//Logger.root.onRecord.listen(prettyLog);
|
2019-07-17 18:57:51 +00:00
|
|
|
|
|
|
|
var app = Angel(logger: Logger('angel'));
|
|
|
|
var http = AngelHttp(app);
|
|
|
|
var multiHost = HostnameRouter.configure({
|
|
|
|
'api.localhost:3000': apiConfigurer,
|
|
|
|
'localhost:3000': frontendConfigurer,
|
|
|
|
});
|
|
|
|
|
|
|
|
app
|
|
|
|
..fallback(multiHost.handleRequest)
|
|
|
|
..fallback((req, res) {
|
|
|
|
res.write('Uncaught hostname: ${req.hostname}');
|
|
|
|
});
|
|
|
|
|
|
|
|
app.errorHandler = (e, req, res) {
|
2021-04-10 11:23:57 +00:00
|
|
|
print(e.message);
|
2019-07-17 18:57:51 +00:00
|
|
|
print(e.stackTrace);
|
|
|
|
return e.toJson();
|
|
|
|
};
|
|
|
|
|
|
|
|
await http.startServer('127.0.0.1', 3000);
|
|
|
|
print('Listening at ${http.uri}');
|
2019-10-12 14:30:31 +00:00
|
|
|
print('See what happens when you visit http://localhost:3000 instead '
|
|
|
|
'of http://127.0.0.1:3000. Then, try '
|
|
|
|
'http://api.localhost:3000.');
|
2019-07-17 18:57:51 +00:00
|
|
|
}
|