Skip to content

Instantly share code, notes, and snippets.

@atinux
Created December 2, 2013 22:01
Show Gist options
  • Save atinux/7759871 to your computer and use it in GitHub Desktop.
Save atinux/7759871 to your computer and use it in GitHub Desktop.
Cheat Candy Crush via node.js proxy
var http = require('http'),
request = require('request'),
port = 8000;
http.createServer(function (req, res) {
console.log('Proxying url ['+req.url+']');
if (req.url.indexOf('http://candycrush.king.com/api') !== -1 && req.method === 'GET') {
request(req.url, function (err, response, body) {
for (var header in response.headers) {
res.setHeader(header, response.headers[header]);
}
res.statusCode = response.statusCode;
// Cheat
body = body.replace(/"lives":\d+/gi, '"lives":5');
res.write(body);
res.end();
});
}
else {
req.pipe(request(req.url)).pipe(res);
}
})
.listen(port);
console.log('Proxy running on port ' + port);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment