Skip to content

Needs querySnapshot #71

Description

@Wiase9889

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);
});

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions