Provides a Firebase authentication provider for react-admin, enabling email/password, Google, Facebook, GitHub, and Twitter auth. Current version 1.0.2. Requires both firebase and react-admin as peer dependencies. Lightweight adapter wrapping Firebase SDK auth methods into react-admin's authProvider interface.
npm install ra-auth-firebaseNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initializes Firebase app and creates a react-admin auth provider with firebaseAuthProvider.
Call initializeApp() and pass the returned app reference to firebaseAuthProvider.
Use ra-data-firebase or another Firebase data provider for data access.
Use firebase v9+ and import from 'firebase/auth' instead of 'firebase'.
Import type { FirebaseAuthProviderOptions } from 'ra-auth-firebase'.Use import { firebaseAuthProvider } from 'ra-auth-firebase' or set type: module in package.json.Call initializeApp(config) and pass the result to firebaseAuthProvider.
Use import { firebaseAuthProvider } from 'ra-auth-firebase' (named export) and ensure tsconfig allows ESM.