Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kellyiscute/feather_api

A lightweight backend api framework for dart ⚠️ under construction ⚠️
https://github.com/kellyiscute/feather_api

backend dart dartlang

Last synced: 26 days ago
JSON representation

A lightweight backend api framework for dart ⚠️ under construction ⚠️

Awesome Lists containing this project

README

        

# FeatherAPI
A lightweight backend api framework for dart
⚠️ **under construction**

## QuickStart
```dart

import "feather_api/feather_api.dart";

class MyController extends Controller {
@override
String get baseUrl => "/";

@GET("")
Future myPostMethod(ParsedRequest req) async {
return Response.json({"msg": "Hello World"});
}
}

void main() async {
Application app = new Application();

app.registerController(MyController(app));
await app.run();
}

```