Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fireadmin

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fireadmin

Library to simplify implementing standard app functionality when using Firebase (User/Presence Management, Object CRUD and Listing)

  • 0.0.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

FireAdmin

npm version npm downloads build status dependencies status codeclimate coverage license

| Fireadmin organizes and simplifies usage of Firebase

FireAdmin is a Javascript Library built to simplify implementing standard app functionality when using Firebase (User/Presence Management, Object CRUD/ Listing/Counting).

FireAdmin is especially useful when you are trying to administer a Firebase data set (hence the name). Administration dashboards are a breeze thanks to functions like getOnlineUserCount() that provide analytics data in simple and easy to understand calls.

Features

  • Authentication pared to user management
  • User Profile created on signup
  • Session management
  • Descructured Population based on ID
  • Role management

Getting Started

  1. Include the Fireadmin bundle in your index.html :
<script src="http://cdn.prue.io/fireadmin/0.0.4/fireadmin.min.js"></script>
<!-- Or the following for the latest version -->
<!-- <script src="http://cdn.prue.io/fireadmin/latest/fireadmin.min.js"></script> -->

or Install through package managers: npm install fireadmin --save bower install fireadmin --save

  1. Create a new FireAdmin Object:
var fa = new Fireadmin("https://<your-app>.firebaseio.com");
  1. Start using Fireadmin!
    //Get count of users
    fa.getUserCount().then(function(count){
        console.log('Your app currently has ' + count + ' users.');
    });
    

API Documentation

Docs Page

API Documentation is automatically generated with JSDoc and is included in this repo under dist/docs if you would like to view a local version.

Contributing

  1. Fork repository
  2. Run npm install to install dev dependencies.
  3. Run npm start to Serve and Open the dev environment.

Planning

  • Role Management
  • Automatic Rules Setup
  • Admin Parameter

FAQs

Package last updated on 14 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc