Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/googlearchive/firebase-util
An experimental toolset for Firebase
https://github.com/googlearchive/firebase-util
Last synced: 1 day ago
JSON representation
An experimental toolset for Firebase
- Host: GitHub
- URL: https://github.com/googlearchive/firebase-util
- Owner: googlearchive
- License: mit
- Archived: true
- Created: 2013-12-09T06:25:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T23:16:34.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T12:03:14.067Z (7 months ago)
- Language: JavaScript
- Homepage: http://firebase.github.io/firebase-util
- Size: 797 KB
- Stars: 276
- Watchers: 69
- Forks: 67
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Status: Archived
This repository has been archived and is no longer maintained.![status: inactive](https://img.shields.io/badge/status-inactive-red.svg)
# Firebase-util
[![Build Status](https://travis-ci.org/firebase/firebase-util.svg?branch=master)](https://travis-ci.org/firebase/firebase-util)
[![Coverage Status](https://img.shields.io/coveralls/firebase/firebase-util.svg)](https://coveralls.io/r/firebase/firebase-util)
[![Version](https://badge.fury.io/gh/firebase%2Ffirebase-util.svg)](http://badge.fury.io/gh/firebase%2Ffirebase-util)This is a collection of power toys (mostly experimental) and utilities for use in Firebase.
## The Tools
- **Firebase.util.NormalizedCollection**
Sync to multiple Firebase database paths and seamlessly merge the data into a single object. You can use most of your favorite
Firebase database methods (on, once, set, etc) normally. The merged data is distributed back to the responsible paths
during set/update/remove ops. [View Docs and API](src/NormalizedCollection/README.md)- **Firebase.util.Paginate**
Infinite scrolling and pagination with Firebase data. [View Docs and API](src/Paginate/README.md)## Setup
### In the browser
With Bower: `bower install firebase-util`
From the CDN: https://cdn.firebase.com/libs/firebase-util/x.x.x/firebase-util.min.js
```
// off the global Firebase.util namespace
var emailKey = Firebase.util.escapeEmail( anEmailAddress );// or in your browserify packages
//var fbutil = require('firebase-util');```
### In Node
```javascript
var fbutil = require('./firebase-util.js');
var emailKey = fbutil.escapeEmail( anEmailAddress );
```## Global Utilities
### Firebase.util.logLevel(int)
Log debugging info to JavaScript console (or command line in node.js). Defaults to 'warn' (errors and warnings).
This can be set or changed at any time to any of the following:```javascript
Firebase.util.logLevel(true); // default logging (also accepts 'all' or 'on')
Firebase.util.logLevel(false); // all logging off (also accepts 0, 'off' or 'none')
Firebase.util.logLevel('error'); // error, warn, info, log, or debug
```Debugging can also be enabled in the browser by adding `debugLevel=x` into the url's query parameters. This allows one to turn on debugging for quick troubleshooting without having to modify any code.
The logLevel() method returns a `revert` function that can be used to restore the logging level to it's previous value:
```javascript
// log a whole lotta junk
var revert = Firebase.util.logLevel('debug');// ...run some code...
// revert to default logging
revert();
```You can also filter log output with a RegExp:
```javascript
// only print logs that begin with "Path"
Firebase.util.logLevel('debug', /^Path/);
```## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md)
# LICENSE
See [MIT LICENSE](MIT)