1
https://rest-api-explorer.herokuapp.com
This is AngularJS code in production. If you're wondering how it actually works in prod, this could be a reference, either in a good or a bad way.
The errors I'm seeing are looking like a lot of string interpolation errors, and in error handling. The funny thing is, the error notifier module itself has an error in the URL generation, so the error is actually never sent to server.
> x = "a"
=> "a"
> x.split('*')
=> ["", "a"]
Expected => ["", "a", ""] or ["a"]
It feels bizarre. Anyone has an explanation for this?