Redstone.dart is a server-side, metadata driven microframework for Dart.

How does it work?

Redstone.dart allows you to easily publish your functions and classes through a web interface, by just adding some annotations to them.

import 'package:redstone/redstone.dart' as app;

@app.Route("/")
helloWorld() => "Hello, World!";

main() {
  app.setupConsoleLog();
  app.start();
}

Source code

Does this example look familiar? Redstone.dart took a lot of ideas and concepts from the Python’s Flask microframework.