Wilddog Realtime SDK is a real-time data synchronization library for web and mobile applications, similar to Firebase Realtime Database. Version 2.5.17 is the latest stable release, with infrequent updates. It provides real-time WebSocket-based communication, offline support, and data security rules. Compared to Firebase, it offers localized service for the Chinese market. The library includes TypeScript type definitions for better developer experience.
npm install wilddogNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initializes the Wilddog app, connects to the realtime database, listens for value events, and pushes new data.
Use the correct syncURL from your Wilddog console (usually ends with .wilddogio.com).
Check if app is already initialized before calling initializeApp, or use wilddog.app() to get the existing instance.
Use the recommended auth methods from the latest Wilddog authentication guide.
Accept full import or consider using alternative solutions if bundle size is critical.
Call wilddog.initializeApp(config) with a valid configuration object.
Wrap primitive data in an object: ref.push({ value: data })Update database security rules to allow read/write from the client, or authenticate properly.
npm uninstall wildgod && npm install wilddog
No dependency data recorded yet.