I\'m trying to setup AngularJS to communicate with a cross-origin resource where the asset host which delivers my template files is on a different domain and therefore the X
If you are using a nodeJS server, you can use this library, it worked fine for me https://github.com/expressjs/cors
var express = require('express') , cors = require('cors') , app = express(); app.use(cors());
and after you can do an npm update.
npm update