gazelle_core 0.1.5
gazelle_core: ^0.1.5 copied to clipboard
A lightweight Dart web framework for scalable and developer-friendly server-side projects.
example/gazelle_core_example.dart
import 'package:gazelle_core/gazelle_core.dart';
void main() async {
final app = GazelleApp(address: "localhost", port: 8080);
app.get("/", (request) async {
return GazelleResponse(
statusCode: 200,
body: "Hello, Gazelle!",
);
});
await app.start();
}