Writing-a-Plugin

Guidelines

Writing a plug-inis easy. You can provide plug-ins as either functions, or classes:

  1. AngelConfigurer awesomeify({String message = 'This request was intercepted by an awesome plug-in.'}) {
  2. return (Angel app) async {
  3. app.fallback((req, res) async => res.write(message));
  4. };
  5. }
  6. class MyAwesomePlugin {
  7. @override
  8. Future<void> configureServer(Angel app) async {
  9. app.responseFinalizers.add((req, res) async {
  10. res.headers['x-be-awesome'] = 'All the time :)';
  11. });
  12. }
  13. }
  14. await app.configure(MyAwesomePlugin().configureServer);

Guidelines

  • Plugins should only do one thing, or serve one purpose.
  • Functions are preferred to classes.
  • Always need to be well-documented and thoroughly tested.
  • Make sure no other plugin already serves the purpose.
  • Use the provided Angel API’s whenever possible. This will help your plugin resist breaking change in the future.
  • Try to get it added to the angel-dart organization (ask in the chat).
  • Plugins should generally be small, as they usually serve just one purpose.
  • Plugins are allowed to modify app configuration.
  • Stay away from req.rawRequest and res.rawResponse if possible. This can restrict people fromusing your plugin on multiple platforms.
  • Avoid checking app.isProduction; leave that to user instead.
  • Always use req.parseBody() before accessing the request body.

Finally, your plugin should expose common options in a simple way. For example, the (deprecated) compress plugin has a shortcut function, gzip, to set up GZIP compression, whereas for any other codec, you would manually have to specify additional options.

This can greatly aid readability, as there is simply less text to read in the most common cases.

  1. main() {
  2. var app = new Angel();
  3. // Calling gzip()
  4. app.responseFinalizers.add(gzip());
  5. // Easier than:
  6. app.responseFinalizers.add(compress('lzma', lzma));
  7. }