faq - SoftwareSandbox/FiAngulartje GitHub Wiki
What is the difference between the js and es6 files under the app/scripts folder?
Basically, the es6 and js files contain the same code. Except the es6 files are written following the new Ecmascript 6 standards and the js files are generated from the es6 files using grunt.
CORS? JSONP? Proxy?
We're using a proxy at the moment, defined in our Gruntfile, which redirects the browsers requests that went to /api/resource
, to backend-server/resource
.