Using the Web SDK, is it possible to get a list of the database paths currently being watched and the events they're watching for?
Let's say I have the following code:
firebase.database().ref('/users/joe/email').on('value', ...);
firebase.database().ref('/usersPosts/joe').on('child_added', ...);
/users/joe/email
/usersPosts/joe
firebaser here
There is no public API to get a list of the paths that have an active listener.