This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Home
luizmineo edited this page May 28, 2014
·
14 revisions
###Introduction 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:bloodless/server.dart' as app;
@app.Route("/")
helloWorld() => "Hello, World!";
main() {
app.setupConsoleLog();
app.start();
}
Does this example look familiar? Redstone.dart took a lot of ideas and concepts from the Python's Flask microframework.
###Quick Start Guide
###Reference
- Routes
- Interceptors
- Error handlers
- Groups
- Dependency Injection
- Importing libraries
- Plugins
- Shelf Middlewares
- Unit test
- Server Configuration
- Deploy
###Improve this wiki Found a problem? Feel free to improve this wiki :)
-
Quick Start Guide
-
Reference
-
Serialization
-
Databases
-
MVC
-
Web Sockets