parrot 0.0.6 copy "parrot: ^0.0.6" to clipboard
parrot: ^0.0.6 copied to clipboard

Parrot is a modular Dart framework for building efficient, reliable, and scalable applications.

example/main.dart

import 'package:parrot/parrot.dart';

name(ref) => 'Parrot';
hello(ref) => 'Hello ${ref(name)}';

final root = Module(
  providers: {name, hello},
);

void main() async {
  final app = Parrot(root);

  print(await app.resolve(hello));
}
1
likes
150
pub points
0%
popularity

Publisher

verified publisherodroe.com

Parrot is a modular Dart framework for building efficient, reliable, and scalable applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

More

Packages that depend on parrot