Socket
Socket
Sign inDemoInstall

@firebase/database-compat

Package Overview
Dependencies
14
Maintainers
4
Versions
919
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firebase/database-compat

The Realtime Database component of the Firebase JS SDK.


Version published
Maintainers
4
Weekly downloads
2,476,667
increased by0.72%
Install size
14.2 MB

Weekly downloads

Package description

What is @firebase/database-compat?

The @firebase/database-compat package is a compatibility layer for the Firebase Realtime Database, allowing developers to use the Firebase Realtime Database with legacy code that was written for older versions of Firebase. It provides an easy way to interact with Firebase Realtime Database using JavaScript, enabling real-time data synchronization and offline capabilities.

What are @firebase/database-compat's main functionalities?

Real-time Data Synchronization

This feature allows you to synchronize data in real-time. Any changes in the database are automatically and instantly reflected to all connected clients.

const { initializeApp } = require('firebase/app');
const { getDatabase, ref, onValue } = require('@firebase/database-compat');

const app = initializeApp({ /* your config */ });
const db = getDatabase(app);
const dbRef = ref(db, 'path/to/data');
onValue(dbRef, (snapshot) => {
  console.log(snapshot.val());
});

Data Retrieval

This feature allows you to retrieve data once without setting up a continuous listener. It's useful for fetching data at a specific moment.

const { getDatabase, ref, get } = require('@firebase/database-compat');

const db = getDatabase();
const dbRef = ref(db, 'path/to/data');
get(dbRef).then((snapshot) => {
  if (snapshot.exists()) {
    console.log(snapshot.val());
  } else {
    console.log('No data available');
  }
}).catch((error) => {
  console.error(error);
});

Write and Update Data

This feature allows you to write new data or update existing data at a specified path in the database.

const { getDatabase, ref, set, update } = require('@firebase/database-compat');

const db = getDatabase();
const dbRef = ref(db, 'path/to/data');
set(dbRef, { key: 'value' });
update(dbRef, { updatedKey: 'updatedValue' });

Other packages similar to @firebase/database-compat

Readme

Source

@firebase/database-compat

This is the compatibility layer for the Firebase Realtime Database component of the Firebase JS SDK.

This package is not intended for direct usage, and should only be used via the officially supported firebase package.

FAQs

Last updated on 28 Mar 2024

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