-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
This local implementation of the great Firebase is a great idea for offline applications especially PWAs and ELECTRON apps. But there is one key thing missing, the real-time querySnapshot. This feature is very important as it reduces the time and stress to always reload the browser to see the effect.
Example:
get(myOffersRef).then((snapshot) => {
snapshot.forEach((child) => {
console.log(child.key, child.val().uid);
});
}).catch((error) => {
console.error(error);
});
Erasmus001
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed