platform/packages/seo/example/main.dart

44 lines
1.4 KiB
Dart
Raw Normal View History

2018-11-08 16:19:31 +00:00
import 'dart:convert';
2018-07-09 06:14:25 +00:00
import 'package:angel_framework/angel_framework.dart';
2018-11-08 16:17:44 +00:00
import 'package:angel_framework/http.dart';
2018-07-09 06:14:25 +00:00
import 'package:angel_seo/angel_seo.dart';
import 'package:angel_static/angel_static.dart';
import 'package:file/local.dart';
2018-11-08 16:19:31 +00:00
import 'package:http_parser/http_parser.dart';
2018-07-09 06:14:25 +00:00
main() async {
2018-11-08 16:17:44 +00:00
var app = new Angel();
2018-07-09 06:14:25 +00:00
var fs = const LocalFileSystem();
var http = new AngelHttp(app);
// You can wrap a [VirtualDirectory]
var vDir = inlineAssetsFromVirtualDirectory(
2018-07-09 06:14:25 +00:00
new VirtualDirectory(
app,
fs,
source: fs.directory('web'),
),
);
2018-11-08 16:17:44 +00:00
app.fallback(vDir.handleRequest);
2018-07-09 06:14:25 +00:00
// OR, just add a finalizer. Note that [VirtualDirectory] *streams* its response,
// so a response finalizer does not touch its contents.
//
// You likely won't need to use both; it just depends on your use case.
app.responseFinalizers.add(inlineAssets(fs.directory('web')));
2018-11-08 16:17:44 +00:00
app.get('/using_response_buffer', (req, res) async {
var indexHtml = fs.directory('web').childFile('index.html');
var contents = await indexHtml.readAsString();
res
2018-11-08 16:19:31 +00:00
..contentType = new MediaType('text', 'html', {'charset': 'utf-8'})
..buffer.add(utf8.encode(contents));
});
2018-11-08 16:17:44 +00:00
app.fallback((req, res) => throw new AngelHttpException.notFound());
2018-07-09 06:14:25 +00:00
var server = await http.startServer('127.0.0.1', 3000);
print('Listening at http://${server.address.address}:${server.port}');
}