Hello everyone, hope you are doing well this Friday.--I need some help with my firebase project, I've been doing all the frontend fine, and everything is working, but now I want to make some request to Firebase from the backend with NodeJS, and I'm unable to make it work.I created a very simple node test that only has this code:var Firebase = require('firebase');
var rootRef = new Firebase('https://firebase-id.firebaseio.com');And I receive an error just by doing that, I don't even have the time to make any requests or complete my code:\node_modules\firebase\lib\firebase-node.js:29
function yb(a){a.ue||(a.ue=!0,$a(a.wg,a))}nb.prototype.wg=function(){for(;this.Ba&&this.Ba.length;){var a=this.Ba;this.Ba=null;for(var b=0;b<a.length;b++)wb(this,a[b],this.N,this.Pf)}this.ue=!1};function wb(a,b,c,d){if(c==rb)b.Gf(d);else{if(b.o)for(;a&&a.vd;a=a.Ga)a.vd=!1;b.If(d)}}function Ab(a,b){a.vd=!0;$a(function(){a.vd&&Bb.call(null,b)})}var Bb=Xa;function sb(a){la.call(this,a)}ka(sb,la);sb.prototype.name="cancel";var Cb=Cb||"2.4.0";function y(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function z(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b]}function Db(a,b){for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b(c,a[c])}function Eb(a){var b={};Db(a,function(a,d){b[a]=d});return b}function Fb(a){return"object"===typeof a&&null!==a};function Gb(a){var b=[];Db(a,function(a,d){da(d)?Na(d,function(d){b.push(encodeURIComponent(a)+"="+encodeURIComponent(d))}):b.push(encodeURIComponent(a)+"="+encodeURICompone
Error: Firebase (2.4.0) INTERNAL ASSERT FAILED: Missing index implementation for size
at Error (native)
at Jb (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:29:1173)
at Ib (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:29:1144)
at d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:76:697
at ma (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:8:548)
at Je (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:76:659)
at de.h.W (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:81:197)
at de.h.H (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:81:425)
at de.h.H (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:81:403)
at Ji (d:\Sync\QuipoQuiz\v2.0.0\node_modules\firebase\lib\firebase-node.js:219:69)Hope someone can help me resolve this as I've searched for this particular problem in Google, and I can't find anything that is related to my problem.Thank's!
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/efd71304-a6f2-4eba-a2c1-23ecf1d1fbd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CAGcMwsDSU%2BwGxa5c50UxixkxSMHHGtEWaN7ke85z%2B3n3%2B0XFhg%40mail.gmail.com.
getList = function(callback) {
rootRef.child('list').orderByChild('order').on('value', function(snapshot) {
if (callback != null) {
return callback(snapshot.val());
}
});
};
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/23ba26d8-df81-4296-b017-418b449ae701%40googlegroups.com.