netto 0.1.2
netto: ^0.1.2 copied to clipboard
A minimal, flexible, composable, and neat web framework for Dart.
import "dart:io";
import "package:netto/netto.dart";
Future<void> main() async {
final app = Netto()
..use(logger())
..get("/", (Ctx ctx) => ctx.response.string("Hello World!"));
await app.serve(InternetAddress.loopbackIPv4, 8080);
}