Dart - DartVoid - Vane Server

Vane is a framework to make it easy and fun to write Dart server-side applications. With Vane you can write both simple and advanced applications, with the powerful middleware system you can write reusable classes that you can build a chain out of that processes your requests.
There are only one type of handler class, the Vane class. Any class extending Vane can either act as a handler or be registered to run as a middleware class. Vane classes registered to act as middleware can do so either before or after the main class.
Middleware classes can run synchronously or asynchronously and you are guaranteed that they execute in the order you define. From any Vane class you can choose to execute the next class by running next() or to return to the client by running close()
http://www.dartvoid.com/

Commentaires