The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2018-07-09 13:23:12 -04:00
example Added inlineAssets, split out inlineAssetsFromVirtualDirectory 2018-07-09 09:49:25 -04:00
lib Add tests + Travis 2018-07-09 13:20:14 -04:00
test Update test 2018-07-09 13:23:12 -04:00
.gitignore Initial commit 2018-07-09 01:28:31 -04:00
.travis.yml Add tests + Travis 2018-07-09 13:20:14 -04:00
analysis_options.yaml Inline CSS+JS assets 2018-07-09 02:14:25 -04:00
CHANGELOG.md Inline CSS+JS assets 2018-07-09 02:14:25 -04:00
LICENSE Initial commit 2018-07-09 01:28:31 -04:00
pubspec.yaml Add tests + Travis 2018-07-09 13:20:14 -04:00
README.md Add tests + Travis 2018-07-09 13:20:14 -04:00

seo

Pub build status

Helpers for building SEO-friendly Web pages in Angel. The goal of package:angel_seo is to speed up perceived client page loads, prevent the infamous flash of unstyled content, and other SEO optimizations that can easily become tedious to perform by hand.

inlineAssets

A response finalizer that can be used in any application to patch HTML responses, including those sent with a templating engine like Jael.

In any text/html response sent down, link and script elements that point to internal resources will have the contents of said file read, and inlined into the HTML page itself.

In this case, "internal resources" refers to a URI without a scheme, i.e. /site.css or foo/bar/baz.js.

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_seo/angel_seo.dart';
import 'package:angel_static/angel_static.dart';
import 'package:file/local.dart';

main() async {
  var app = new Angel()..lazyParseBodies = true;
  var fs = const LocalFileSystem();
  var http = new AngelHttp(app);

  app.responseFinalizers.add(inlineAssets(fs.directory('web')));

  app.use(() => throw new AngelHttpException.notFound());

  var server = await http.startServer('127.0.0.1', 3000);
  print('Listening at http://${server.address.address}:${server.port}');
}

inlineAssetsFromVirtualDirectory

This function is a simple one; it wraps a VirtualDirectory to patch the way it sends .html files.

Produces the same functionality as inlineAssets.

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_seo/angel_seo.dart';
import 'package:angel_static/angel_static.dart';
import 'package:file/local.dart';

main() async {
  var app = new Angel()..lazyParseBodies = true;
  var fs = const LocalFileSystem();
  var http = new AngelHttp(app);

  var vDir = inlineAssets(
    new VirtualDirectory(
      app,
      fs,
      source: fs.directory('web'),
    ),
  );

  app.use(vDir.handleRequest);

  app.use(() => throw new AngelHttpException.notFound());

  var server = await http.startServer('127.0.0.1', 3000);
  print('Listening at http://${server.address.address}:${server.port}');
}