user1428951
user1428951

Reputation: 11

How to check script file size after gzip compression

Using iis, how can we check the size of a script file, eg jQuery library, after the gzip compression?

Upvotes: 1

Views: 219

Answers (1)

Michael Benin
Michael Benin

Reputation: 4332

OSX or Linux command line:

gzip app.js && du -h app.js.gz

Upvotes: 1

Related Questions