angel3_seo 8.1.1 copy "angel3_seo: ^8.1.1" to clipboard
angel3_seo: ^8.1.1 copied to clipboard

Helper infrastructure for building SEO-friendly Web backends in Angel3.

example/main.dart

import 'dart:convert';
import 'package:angel3_framework/angel3_framework.dart';
import 'package:angel3_framework/http.dart';
import 'package:angel3_seo/angel3_seo.dart';
import 'package:angel3_static/angel3_static.dart';
import 'package:file/local.dart';
import 'package:http_parser/http_parser.dart';

void main() async {
  var app = Angel();
  var fs = const LocalFileSystem();
  var http = AngelHttp(app);

  // You can wrap a [VirtualDirectory]
  var vDir = inlineAssetsFromVirtualDirectory(
    VirtualDirectory(
      app,
      fs,
      source: fs.directory('web'),
    ),
  );

  app.fallback(vDir.handleRequest);

  // 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')));

  app.get('/using_response_buffer', (req, res) async {
    var indexHtml = fs.directory('web').childFile('index.html');
    var contents = await indexHtml.readAsString();
    res
      ..contentType = MediaType('text', 'html', {'charset': 'utf-8'})
      ..buffer!.add(utf8.encode(contents));
  });

  app.fallback((req, res) => throw AngelHttpException.notFound());

  var server = await http.startServer('127.0.0.1', 3000);
  print('Listening at http://${server.address.address}:${server.port}');
}
2
likes
140
pub points
0%
popularity

Publisher

verified publisherdukefirehawk.com

Helper infrastructure for building SEO-friendly Web backends in Angel3.

Homepage
Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

angel3_framework, angel3_static, file, html, http_parser, path

More

Packages that depend on angel3_seo