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.
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.