Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free CORS proxy

I have a chrome extensions that, for now, uses storage.sync as a data store. I am trying upgrade to a more robust data store (cloudant, iriscouch) so I can expand what the extension can do.

The problem I am facing is that none of the free cloud store options I have seen (cloudant, iriscouch, mongolab) support cors (or in case of mongolab - free tier is not enough)

So I have fewquestions:

  1. Is there a free nosql cloud store option that fully supports cors?
  2. If not, is there a free proxy that I can use. I have tried http://www.corsproxy.com/ but it only seems to support GET so it's not enough for me.
  3. How would you solves this problem for free and without hosting anything on my own hardware.

Thank you!

like image 453
americanslon Avatar asked Oct 21 '22 21:10

americanslon


1 Answers

Cloudant will have CORS support from January 2014. Iris Couch also supports CORS, just not via a UI - you have to modify the configuration via the CouchDB API.

Couchappy supports CORS and PouchDB, and introduces a selective domain security feature, which allows fine-grained security(https only or both https+http) on a per-domain basis.

like image 74
Will Holley Avatar answered Oct 24 '22 11:10

Will Holley