Skip to content

Instantly share code, notes, and snippets.

@Sneezry
Last active May 31, 2017 18:12
Show Gist options
  • Save Sneezry/ffe4febe51e3526b9ab9c144d5881547 to your computer and use it in GitHub Desktop.
Save Sneezry/ffe4febe51e3526b9ab9c144d5881547 to your computer and use it in GitHub Desktop.
const fs = require('fs');
const proxyConfig = require('d:\\home\\site\\wwwroot\\proxies.json');
module.exports = function (context, req) {
proxyConfig.proxies.medium = {
matchCondition: {
route: '/medium/{user}'
},
backendUri: 'https://medium.com/feed/@{user}'
};
fs.writeFileSync('d:\\home\\site\\wwwroot\\proxies.json', JSON.stringify(proxyConfig));
context.res = {
status: 200,
body: "Done"
};
context.done();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment