CORSmirror is a RESTful API that provides a mirror to websites with CORS enabled.
The web service is built with:
For more information, check out the repository.
The RESTful API is as follows:
http://www.corsmirror.com/v1/cors?url=<url>
Thus, if you want to make a jQuery AJAX request to http://example.com
, you can do the following:
var url = 'http://example.com';
$.ajax({
method: 'GET',
url: 'http://www.corsmirror.com/v1/cors?url=' + url
}).done(function(data) {
console.log(data);
});
You can pass additional query strings that sets or overrides the response header fields:
$.get(
'http://www.corsmirror.com/v1/cors' +
'?url=http://example.com' +
'&content-type=text/plain'
).done(function(data, status, xhr) {
console.log(xhr.getResponseHeader('content-type'));
});
Note: There are certain fields like Content-Length
that cannot be overridden.
This is an open-source project so feel free to fork the repository and play with the server.
Contributions are welcome!
$ git clone https://github.com/CORSmirror/CORSmirror.git
$ cd CORSmirror
$ npm install
$ npm run dev # development
$ npm start # production
$ npm test
$ npm run lint