I have an application running on Firebase, and I noticed a normal registration in my database. So, I looked through my code to find the problem. And I realized if I write this code in my browser console.
var xs = new Firebase('<My-firebase-url>')
xs.createUser({
email: 'email@mail.com',
password: 'passwrd'
}, function(error, userData) {
console.log(userData, error)
})
It creates a new user in my database. How can I limit this to the case with Firebase or angular or node-js or any other way, I can stop this logging spam from stopping.
Thanks.
source
share