A pure Dart implementation of the Firebase client
A simple usage example:
import 'package:firebase_dart/firebase_dart.dart';
main() {
var ref = new Firebase("https://n6ufdauwqsdfmp.firebaseio-demo.com/");
ref.child("test").onValue.listen((e) {
print(e.snapshot.val);
});
}
Besides connecting to a remote firebase database, you can also create and work with a local in memory database.
var ref = new Firebase("mem://some.name/");
Please file feature requests and bugs at the issue tracker.