All Projects → firebase → Firebase Js Sdk

firebase / Firebase Js Sdk

Licence: other
Firebase Javascript SDK

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to Firebase Js Sdk

Rxfirebase
Rxjava 2.0 wrapper on Google's Android Firebase library.
Stars: ✭ 509 (-86.76%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-realtime-database, firebase-cloud-messaging, firebase-auth, firebase-authentication
Laravel Firebase
A Laravel package for the Firebase PHP Admin SDK
Stars: ✭ 369 (-90.4%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-realtime-database, firebase-cloud-messaging, firebase-auth, firebase-authentication
Firebase Ios Sdk
Firebase iOS SDK
Stars: ✭ 3,309 (-13.92%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-auth, firebase-authentication, firebase-messaging
Whatsup
**Deprecated** Real time chat app written in Swift 4 using Firebase and OTP Authentication
Stars: ✭ 39 (-98.99%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-realtime-database, firebase-cloud-messaging, firebase-authentication
firebase-bundle
A Symfony Bundle for the Firebase PHP Admin SDK
Stars: ✭ 112 (-97.09%)
Mutual labels:  firebase-cloud-messaging, firebase-auth, firebase-db, firebase-database, firebase-storage, firebase-authentication
Chatter
Real time chat app written in Swift 4 using Firebase
Stars: ✭ 30 (-99.22%)
Mutual labels:  firebase-cloud-messaging, firebase-auth, firebase-database, firebase-storage, firebase-realtime-database, firebase-authentication
React Firebase Hooks
React Hooks for Firebase.
Stars: ✭ 2,227 (-42.07%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-realtime-database, firebase-auth, firebase-authentication
Firebase Php
Unofficial Firebase Admin SDK for PHP
Stars: ✭ 1,657 (-56.89%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-cloud-messaging, firebase-auth, firebase-authentication
Quickstart Cpp
Firebase Quickstart Samples for C++
Stars: ✭ 123 (-96.8%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-cloud-messaging, firebase-auth
FirebaseChatApp
A Chat app built on firebase features such as firebase-ui,database,storage and cloud messaging
Stars: ✭ 20 (-99.48%)
Mutual labels:  firebase-cloud-messaging, firebase-auth, firebase-database, firebase-storage, firebase-realtime-database
React Gatsby Firebase Authentication
🐣🔥Starter Project / Boilerplate for Authentication with Firebase and plain React in Gatsby.js
Stars: ✭ 356 (-90.74%)
Mutual labels:  firebase, firebase-database, firebase-realtime-database, firebase-auth, firebase-authentication
Quickstart Unity
Firebase Quickstart Samples for Unity
Stars: ✭ 553 (-85.61%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-cloud-messaging, firebase-authentication
The Road To React With Firebase
📓The Road to React with Firebase: Your journey to build business applications with React and Firebase.
Stars: ✭ 82 (-97.87%)
Mutual labels:  firebase, firebase-database, firebase-realtime-database, firebase-auth, firebase-authentication
Firebase Admin Node
Firebase Admin Node.js SDK
Stars: ✭ 1,050 (-72.68%)
Mutual labels:  firebase, firebase-database, firebase-cloud-messaging, firebase-auth, firebase-authentication
uMe
Online Chatting Application (Android) || Messaging App || Firebase
Stars: ✭ 138 (-96.41%)
Mutual labels:  firebase-cloud-messaging, firebase-auth, firebase-database, firebase-storage, firebase-realtime-database
Internalappstore
📦 Manage your own internal Android App Store.
Stars: ✭ 295 (-92.33%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-cloud-messaging, firebase-auth
Petshop
Pet Shop is an e-commerce application for Android built with Flutter (iOS to come soon).
Stars: ✭ 127 (-96.7%)
Mutual labels:  firebase, firebase-database, firebase-realtime-database, firebase-auth
Firebase Android Sdk
Firebase Android SDK
Stars: ✭ 1,704 (-55.67%)
Mutual labels:  firebase, firebase-database, firebase-storage, firebase-realtime-database
Space
A real time chat app for developers built using React, Redux, Electron and Firebase
Stars: ✭ 161 (-95.81%)
Mutual labels:  firebase, firebase-database, firebase-realtime-database, firebase-auth
Firebase Authentication Dotnet
C# library for Firebase Authentication
Stars: ✭ 222 (-94.22%)
Mutual labels:  firebase, firebase-database, firebase-realtime-database, firebase-authentication

Firebase Javascript SDK

Build Status Version Coverage Status

The Firebase JavaScript SDK implements the client-side libraries used by applications using Firebase services. This SDK is distributed via:

To get started using Firebase, see Add Firebase to your JavaScript Project.

Release Notes

Upgrade to Version 9

Version 9 has a redesigned API that supports tree-shaking. Read the Upgrade Guide to learn more.

Supported Environments

Please see Environment Support.

SDK Dev Workflow

Prerequisites

Node.js

Before you can start working on the Firebase JS SDK, you need to have Node.js installed on your machine. The currently supported versions are 10.15.0 or greater.

To download Node.js visit https://nodejs.org/en/download/.

NOTE: You can use a tool like NVM or N to install and manage multiple node versions

Yarn

In addition to Node.js we use yarn to facilitate multi package development.

To install yarn follow the instructions listed on their website: https://yarnpkg.com/en/docs/install

Java

The closure compiler requires a modern Java installation. Java 8+ should be installed: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

Verify Prerequisites

You can verify your setup by running the following commands in your terminal:

$ node -v
$ yarn -v
$ java -version

Your Node.js version should be 10.15.0 or greater, your yarn version should be 1.0.0 or greater, and your java version should be 1.8.0 or greater.

NOTE: We will update the documentation as new versions are required, however for continuing development on the SDK, staying up to date on the stable versions of these packages is advised

Install Dependencies

Once you have Node.js and yarn installed on your machine and have validated that you are running the proper version, you can set up the development environment by running the following at the root of the SDK:

$ yarn

Once you have installed all the dependencies, you can build the entire SDK by running the following command the root of the SDK:

$ yarn build

Testing the SDK

Test Setup

A production project is required to test the Firebase JS SDK. You can create a new project by visiting the Firebase Console.

Web App Setup

Visit the "Project Overview" and select "Add app" under your project name. Register the app with a nickname and click through the remaining steps. Without performing this step, you will encounter the error in the test setup:

FirebaseError: There are no WEB apps associated with this Firebase project

Firestore Database Setup

Visit the "Firestore Database" section of the console and create a Cloud Firestore database. When prompted to select the set of initial security rules, select any option (e.g. "Start in Production Mode") since these permission settings will be overwritten below.

Realtime Database Setup

Visit the "Realtime Database" section of the console and create a realtime database. When prompted to select the set of initial security rules, select any option (e.g. "Start in Production Mode") since these permission settings will be overwritten below.

Authentication Support

Visit the authentication config in your project and enable the Anonymous sign-in provider to complete your project config.

Automated Setup

The tests need to be configured to use the Firebase production project that you created in the "Test Setup" section above. To do this, run the yarn test:setup command, as follows:

# Select the Firebase project via the text-based UI.
$ yarn test:setup

# Specify the Firebase project via the command-line arguments.
$ yarn test:setup --projectId=<test_firebase_project_id>

If you see an error like

HTTP Error: 404, Project '<test_firebase_project_id>' does not exist.

then make sure that you have created the database as specified in the "Firestore Database Setup" section above.

Running the tests

Each of the directories in the integration directory as well as the packages directory have their own test suites. You will need to build the SDK before running tests. Test suites can be run all together by running the following command at the root of the package:

$ yarn test

In addition, you can run any of the tests individually by running yarn test in an individual package directory.

Building the SDK

Introduction

The Firebase JS SDK is built with a series of individual packages that are all contained in this repository. Development is coordinated via yarn workspaces and Lerna (a monorepo management tool).

Each package in the packages directory, constitute a piece of our implementation. The SDK is built via a combination of all of these packages which are published under the firebase scope on NPM.

Helper Scripts

Each package in the packages directory exposes a dev script. This script will set up a watcher for development on the individual piece of the SDK. In addition, there is a top level dev script that can be run to start all of the watch tasks as well as a sandbox server.

You can run the dev script by running the following at the root of the package:

$ yarn dev

Prepush Hooks

As part of this repo, we use the NPM package husky to implement git hooks. We leverage the prepush hook to do two things:

  • Automated code styling (using prettier)
  • Automated LICENSE header insertion

Contributing

See Contributing for more information on contributing to the Firebase JavaScript SDK.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].