gazelle_core 0.2.0 copy "gazelle_core: ^0.2.0" to clipboard
gazelle_core: ^0.2.0 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, response) async {
    return response.copyWith(
      statusCode: 200,
      body: "Hello, Gazelle!",
    );
  });

  await app.start();
}
3
likes
140
pub points
68%
popularity

Publisher

verified publisherintales.it

A lightweight Dart web framework for scalable and developer-friendly server-side projects.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

More

Packages that depend on gazelle_core