react-hooks-firebase

A Custom React Hooks for Firebase 🔥

Usage no npm install needed!

<script type="module">
  import reactHooksFirebase from 'https://cdn.skypack.dev/react-hooks-firebase';
</script>

README

React-hooks-firebase

A Custom React Hooks for Firebase 🔥

npm bundle size npm GitHub last commit David

Motivation

I love Firebase so much and I used it for my playground to build a Web app or Mobile app. Instead of re-creating the initial project from scratch I just want to create a tool

Installation

npm i --save react-hooks-firebase

Usage

import { useFirebase } from 'react-hooks-firebase';

const config = {
    // your firebase project config
}

const Component = () => {
  const { auth, database, storage } = useFirebase(config, options);
};