Last updated:
0 purchases
kite http
kite_http #
Features #
Middleware
Support for custom middleware
RegExp Routing
Uses Regex for routing
Example #
void main() {
final server = KiteServer();
server.use(middleware);
server.handle(
HandlerMetadata(
RegExp(
r"(\/)?",
multiLine: true,
caseSensitive: false,
),
"GET",
),
handler,
);
server.listen();
}
void middleware(Request req, Response res, Function() next) async {
next();
}
void handler(Request req, Response res) async {
final body = await req.json;
return res.json(body);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.