Skip to content

A pure Dart implementation of the Firebase client

License

Notifications You must be signed in to change notification settings

aler/firebase_dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A pure Dart implementation of the Firebase client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 100.0%