kevmoo / firebase_dart

A pure Dart implementation of the Firebase client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%