Using The Chrome console, you can access your AngularJS injectable services. This was down and dirty debugging, and can be a lifesaver in troubling times.
You can get the services/factories in console by using:
var $injector = angular.element ($). Injector ();
This $injector can-help-skip the form validations on the client side, but you do need to check the value on server side.
If you have the factory like:
function ($firebase, Fburl) { return $firebase (new firebase (Fburl)). $asArray ();})
You can access it by using:
var Projects = $injector. Get ("Projects");
Because It uses firebase, therefore, now-can use any firsebase methods, for example:
Projects. $add ({name: "", Site: "", Description: "<<<<<<<<>>>>>>"})
Here site need to is a URL, but if access it from console, we still can add value into the IT:
[AngularJS] accessing Services from Console