Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

108
Views
Firebase Realtime Database - "Error: Client is offline". React/NextJS

Using React with NextJS the following error occurs occasionally when fetching data from a Firebase Realtime Database.

Unhandled Runtime Error
Error: Error: Client is offline.

I am using Firebase 9.0.1 for React.

Top Level code for intialisation and config

import { initializeApp } from "firebase/app";
import { getDatabase, ref, onValue, child, get } from "firebase/database";
import CONFIG from '../CONFIG.json'


const FIREBASE_CONFIG = {
  apiKey: CONFIG['FIREBASE_API_KEY'],
  authDomain: CONFIG['FIREBASE_AUTH_DOMAIN'],
  databaseURL: CONFIG['FIREBASE_DATABASE_URL'],
  storageBucket: CONFIG['FIREBASE_STORAGE_BUCKET']

}
const fbApp = initializeApp(FIREBASE_CONFIG)

And later fetching data

export default function Leads() {
  ...

  useEffect(() => {
    const database = getDatabase(fbApp)
    const ads = ref(database, 'ad_results')

    get(ads).then((snap) => {
      const results = snap.val()
      ...

I have tried searching similar issues but to no avail, any help would be appreciated.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

I had the same issue with my Cloud Functions, which was very confusing. After some hours of debugging, I found out that the .get() method of the Realtime Database was causing this problem. My current workaround is to use instead .once('value').

So I changed my code from:

await database.ref(`foo/bar`).get();

to

await database.ref(`foo/bar`).once('value');
about 4 years ago · Juan Pablo Isaza Report

0

I am using firebase nodejs SDK, also facing the same error: "Error: Error: Client is offline." occasionally.

I have tried the above solution posted by Nils Reichardt. It works for me.

Thanks Nils!

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!