Update: If you use Chrome then you can use "Throttling" so simulate slow network for all your assets. This should be easier than proxy. Toggle device mode Choose Network type. Refresh the page https://developer.chrome.com/devtools/docs/device-mode Proxy: For some time I wanted to use some proxy for development and testing of eg. slow internet connection, but it was hard to find something useful and free. I know there is Charles but buy it to use it at most one in a month is not for me. I started thinking about Node.js, maybe I can write proxy for me? But fortunately I found one. https://github.com/nodejitsu/node-http-proxy With this module I can write really short code to create slow server: var http = require('http'), httpProxy = require('http-proxy'); httpProxy.createServer(function (req, res, proxy) { var buffer = httpProxy.buffer(req); setTimeout(function () { proxy.proxyRequest(req, res, { host:
Dziękuję bardzo za link! :-)
ReplyDeleteSwoją drogą, ciekawego masz bloga. Znalazłem kilka świetnych linków także dla siebie. Oby tak dalej ;)
Po prostu lepiej zapamiętuję gdy o czymś napiszę :) Miałem też często problem z wyszukaniem informacji o których kiedyś tam czytałem, mam nadzieję że teraz będzie to prostsze.
ReplyDeleteCo do linka to nie masz za co dziękować :)
Hehe, mam tak samo. Często napiszę o czymś post, a później sam go szukam na blogu i sprawdzam jak to dokładnie się robiło :-) Jeszcze raz dzięki, do usłyszenia!
ReplyDelete