<div dir="ltr">Here's apparently just ONE of the solutions on the Chrome Web Store for CORS.  I do not recommend this unless you know what you are doing (turn it on for only certain cases).<div><br></div><div><div><a href="https://chrome.google.com/webstore/detail/allow-cors-access-control/lhobafahddgcelffkeicbaginigeejlf?hl=en">https://chrome.google.com/webstore/detail/allow-cors-access-control/lhobafahddgcelffkeicbaginigeejlf?hl=en</a> <br></div></div><div><br></div><div>In fact, I do not use this myself, and I instead run a local node.js web server (but I don't recommend that either, just that it works).  There's instructions on the web for running express.js in node.js, I think.  What you may want to do differently is something like:</div><div><br></div><div>app.listen(port, 'localhost', function() {<br>  console.log("... port %d in %s mode", port, app.settings.env);<br>});<br><div> <br>It's pretty standard practice for devs to run a localhost web server for debugging, especially.</div></div></div>