You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2019. It is now read-only.
Hi,
I can't use firebase-util normalized collection under nodeJS :
Installation :
npm install firebase
npm install firebase-util
Added in packages too.
NodeJs :
var FirebaseUtil = require('firebase-util');
var clientsRef = new FirebaseUtil.NormalizedCollection(
[myFirebaseRef.child("boutiks/clients"), 'clientsBoutiks'],
[myFirebaseRef.child("clients"), 'clients']
).select(
"clients.nom",
"clients.prenom"
).ref();
I have this error :
FirebaseUtil.NormalizedCollection is not a function in my NodeJS Log.
Please Help.