Socket
Socket
Sign inDemoInstall

@lemasc/firebase-wrapper

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lemasc/firebase-wrapper

This library provides a minimum, tree-shakable API that wraps various functions of the Firebase SDKs (as needed by the RianArai project) and make sure that it's compatiable with both namespaced version (currently on React Native) and modular version (on t


Version published
Weekly downloads
33
increased by10%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@lemasc/firebase-wrapper

This library provides a minimum, tree-shakable API that wraps various functions of the Firebase SDKs (as needed by the RianArai project) and make sure that it's compatiable with both namespaced version (currently on React Native) and modular version (on the web).

Installation

Install the library first.

npm install @lemasc/firebase-wrapper

This library adds compatibilty while preserving tree shaking benefits by using resolve extensions and module alias.

Depending on your framework and tools, this configuration might be different.

With React Native

This library already provides support for React Native. By default we expect that you use

  • react-native-firebase (Namespaced version) on mobile
  • firebase (Modular version) on the Web

If you are using these dependencies, you are ready! Skip to the Usage section and it should work out of the box.

Usage

import { initializeApp, getApps, getApp } from "@lemasc/firebase-wrapper/app";
import { 
  getAuth, 
  // Most functions should also worked!
  signInWithCredential 
} from "@lemasc/firebase-wrapper/app"

// Your firebase config here.
const firebaseConfig = { ... }

const app = !getApps().length ? initializeApp(firebaseConfig) : getApp()
const auth = getAuth(app)

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

FAQs

Last updated on 01 Jan 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc