firebase_dart 0.7.12+4 copy "firebase_dart: ^0.7.12+4" to clipboard
firebase_dart: ^0.7.12+4 copied to clipboard

outdated

A port of the Firebase database client to pure Dart code, usable on different platforms

A pure Dart implementation of the Firebase client

Usage #

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);
  });
}

Local database #

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/");

Features and bugs #

Please file feature requests and bugs at the issue tracker.

115
likes
0
pub points
91%
popularity

Publisher

verified publisherappsup.be

A port of the Firebase database client to pure Dart code, usable on different platforms

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

async, collection, convert, crypto, dart2_constant, isolate, logging, meta, quiver, sortedmap, web_socket_channel

More

Packages that depend on firebase_dart