Skip to content

Instantly share code, notes, and snippets.

View MrFrankel's full-sized avatar
🏠
Working from home

Maor Frankel MrFrankel

🏠
Working from home
  • Microsoft
  • Israel
View GitHub Profile
@MrFrankel
MrFrankel / txt
Last active April 4, 2019 10:33
Links for RUMM slides
https://slides.com/maorfrankel/deck-1-3/fullscreen
https://developer.mozilla.org/en-US/docs/Web/API/Performance
https://prometheus.io/
https://grafana.com/
https://www.youtube.com/watch?v=x9Jlu_h_Lyw
https.createServer(credentials, function (req, res) {
Object.keys(options.routingTable).some(function (key) {
const regX = new RegExp(key);
if (regX.test(req.url)) {
printMe(req.url + ' => ' + (options.routingTable[key].targetName || options.routingTable.target));
proxy.web(req, res, options.routingTable[key]);
curTarget = options.routingTable[key];
return true;
}
});