http://qs321.pair.com?node_id=11109860


in reply to Re^3: Perl script compressor
in thread Perl script compressor

That's mostly because JS is downloaded by the client on each request, so there's real network savings by minimizing the amount of data coming across the wire.

That's a much different reason than simply reading a server-side script directly from disk.

Replies are listed 'Best First'.
Re^5: Perl script compressor
by marto (Cardinal) on Dec 09, 2019 at 03:26 UTC

    "That's mostly because JS is downloaded by the client on each request"

    You may want to switch on your browsers developer tools, head to the network tab and observe exactly the opposite, the browser not download the same JS file on each request.

Re^5: Perl script compressor
by karlgoethebier (Abbot) on Dec 09, 2019 at 11:18 UTC

    If you don‘t believe what marto said make this experiment: Install some http debugging proxy like fiddler. Go to some website that uses JS (almost every today) and examine the traffic. You will understand why some web developers sometimes behave strange. Regards, Karl

    «The Crux of the Biscuit is the Apostrophe»

    perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help