Tagged Questions
The minify tag has no wiki summary.
110
votes
20answers
21k views
Any recommendations for a CSS minifier?
Any recommendations for a CSS minifier?
I’ll be rooting around Google and trying some out, but I suspected that the smart, proficient and curiously handsome StackOverflow community might have already ...
107
votes
11answers
74k views
Online Tool to Unminify / Decompress JavaScript
Are there any scripts and/or online tools that can reverse the effects of minification similar to how Tidy can clean up horrific HTML?
I'm specifically looking to unminify a minified JavaScript file, ...
37
votes
13answers
4k views
Gzip versus minify
I had a somewhat lively discussion the other day about minifying Javascript and CSS versus someone who prefers using Gzip.
I'll call this person X.
X said that Gzip allready minifies the code, since ...
31
votes
3answers
2k views
Why would Google use a font tag?
So, I couldn't help noticing while demonstrating Chrome's DOM browser thing to my brother, that Google uses a <font size=-2> tag.
I know this is a stupid question, but from a programming point ...
30
votes
8answers
7k views
Concatenate and minify JavaScript on the fly OR at build time - ASP.NET MVC
As an extension to this question here Linking JavaScript Libraries in User Controls I was after some examples of how people are concatenating and minifying JavaScript on the fly OR at build time. I ...
28
votes
9answers
27k views
Html minification?
Is there any online tool that we can input the html source of a page and it will minify the code?
I would do that for aspx files that are not a good idea to make the webserver gzip them...
thanks!
27
votes
11answers
12k views
jQuery compiled with Google Closure Compiler
Has anyone compiled jQuery against Google's newly-released Closure compiler?
There has been reported huge savings in code size. I'm curious what the benefit is if jQuery was compiled with it.
24
votes
1answer
19k views
Tool to reverse Javascript minify? [closed]
Possible Duplicate:
Online Tool to Unminify / Decompress JavaScript
Online javascript minify tools basically strip out comments and whitespace.
Is there a tool that can reverse this? Taking ...
23
votes
4answers
5k views
Python script for minifying CSS?
I'm looking for a simple Python script that can minify CSS as part of a web-site deployment process. (Python is the only scripting language supported on the server and full-blown parsers like CSS ...
22
votes
6answers
7k views
Best way to combine and minify JS / CSS on Heroku
First of all, according to this answer, the :cache => true option on stylesheet_link_tag and javascript_include_tag doesn't work on Heroku. Is this true? I've found :cache => true to work ...
19
votes
5answers
1k views
Why minify assets and not the markup?
Why do people suggest minifying web assets, such as CSS and JavaScript, but they never suggest the markup be minified? CSS and JavaScript can be used on many various pages while the markup gets ...
18
votes
8answers
9k views
What's the difference between jquery.js and jquery.min.js?
What is the difference between jquery.min.js and jquery.js?
Which one has support for all functions?
17
votes
1answer
7k views
Google Closure minifier online?
Has anyone setup an online copy/paste utility for Google's Closure minifier? I'm working on a project and I want to minify part of the code manually without having to setup the entire project on my ...
17
votes
6answers
2k views
Is there any reason why MicrosoftAjax.js is not minified?
I compress my own JS using YuiCompressor, but is there any reason why MicrosoftAjax.js not minified? Or is there some setting to say run the compressed version of it (if there is a compressed ...
13
votes
5answers
359 views
Is there a benefit to minifying Javascript before gzipping it?
Is there some valid purpose to minifying before compressing? It seems highly unlikely that the gzipped file is smaller if it's minified first.
I ask because diagnosing production problems in ...
13
votes
4answers
14k views
JavaScript : Good tool to 'minify' jQuery based js files
We are using jQuery in our project. We have numerous custom javascript files in our web-app that have UDFs utilizing the jQuery features. We need to reduce the size (as a part of performance ...
13
votes
2answers
5k views
Minify Html output of ASP.NET Application
What are the ways by which we can reduce the size of the HTML Response sent by an asp.net application?
I am using Controls which are not owned by me and it produces output with white spaces. I am ...
12
votes
8answers
2k views
11
votes
4answers
514 views
Is there a point to minifying PHP?
I know you CAN minify PHP, but I'm wondering if there is any point. PHP is an interpreted language, so will run a little slower than a compiled language, but my question is, would clients see a ...
11
votes
1answer
310 views
Why does Google's Closure Compiler leave a few unnecessary spaces or line breaks?
I've noticed that every time I use Google's Closure Compiler Service, it leaves a few unnecessary spaces in the compiled code presented on the right-hand side of the page. These correspond to line ...
11
votes
6answers
934 views
Why do many sites minify CSS and JavaScript but not HTML? [closed]
Possible Duplicate:
Why minify assets and not the markup?
I have seen a lot of sites using minified CSS and JavaScript to increase website response time but I have never seen any sites use ...
11
votes
3answers
557 views
Minify an Entire Directory While Keeping Element/Style/Script Relationships?
Do any solutions currnetly exist that can minify an entire project directory? More importantly, do any solutions exist that can shorten classnames, id's, and keep them consistent throughout all ...
10
votes
6answers
919 views
Minifying and combining files in .net
I am looking at implementing some performance optimization around my javascript/css. In particular looking to achieve the minification and combining of such. I am developing in .net/c# web ...
10
votes
2answers
1k views
Needed - Visual Studio Custom Build Actions To Minify JS and CSS
I've been using Combres in my applications to compress, combine and minify my javascript and css at run time. This works extremely well and satisfies YSlow perfectly.
Now I'm rethinking the whole ...
10
votes
2answers
3k views
Script Minification and Continuous Integration with MSBuild
On a recent project I have been working on in C#/ASP.NET I have some fairly complicated JavaScript files and some nifty Style Sheets. As these script resources grow in size it is advisable to minify ...
9
votes
2answers
312 views
JSF2 Static Resource Management — Combined, Compressed
Is anyone aware of a method to dynamically combine/minify all the h:outputStylesheet resources and then combine/minify all h:outputScript resources in the render phase? The comined/minified resource ...
9
votes
8answers
631 views
Why do we not just use Minified JS?
I see this word alot "minified" and i never seem to pick a script (ie. from jQuery plugins) that is "minified" but i suppose i should. If i'm right Minified means to remove all unecessary stuff from ...
9
votes
5answers
534 views
Exclude debug javascript code during minification
I'm looking into different ways to minify my javascript code including the regular JSMin, Packer, and YUI solutions. I'm really interested in the new Google Closure Compiler, as it looks exceptionally ...
9
votes
2answers
4k views
Is it bad to Base62 encode a javascript file?
I just found Dean Edwards javascript packer here:
http://dean.edwards.name/packer/
It has a couple of options,
Base62 encode
Shrink variables
To test it I took the latest version of jquery ...
8
votes
5answers
95 views
Can a minifier do this? (…and is it a good idea?)
I have a JavaScript application that generates a significant amount of DOM elements. It means that I often use document.createElement("tagname") in my script.
I am thinking about using this simple ...
8
votes
4answers
1k views
Django: auto minifying css/js files before release
I have following case: I want to use uncompressed js/css files during development (to debug js for example) but on production I want to switch automatically to minified versions of that files.
some ...
8
votes
13answers
1k views
What do you do to your JavaScript code before deployment?
Do you have a step in your deployment process that minifies JS? Do you have any sort of preprocessor for your JavaScript that allows you to leave in comments and console.logs and then have them ...
8
votes
6answers
7k views
Which Javascript minifier (cruncher) does the same things that the one Google uses for its JS APIs?
I am a Google Maps API (javascript) developer. I have noticed that Google uses a Javascript minifier that has the following features:
Shortens variables, properties, arguments, classes, function and ...
8
votes
8answers
2k views
Minifying HTML
I've googled around but can't find any HTML minifacation scripts.
It occoured to me that maybe there's nothing more to HTML minifacation than removing all unneeded whitespace.
Am I missing something ...
7
votes
2answers
661 views
Is there a version of YUI Compressor that deals correctly with media queries?
YUI Compressor has a known bug where some media queries, including those used to serve styles to iOS and Android devices (e.g. @media screen and (max-device-width: 480px) {...}), are broken when ...
7
votes
3answers
3k views
Integrate Google closure compiler with Eclipse IDE?
Does anybody know how to integrate Google closure compiler with Eclipse IDE? The thing I was trying to do is to configure Google closure compiler as a external tool for Eclipse IDE. Then I would be ...
7
votes
4answers
798 views
Better to combine & minify javascript or use Google CDN?
I am building a site which currently uses javascript from several sources:
Group 1: Google Maps API v3 (hosted by Google)
Group 2: jQuery & swfobject (hosted on Google CDN)
Group 3: Several ...
6
votes
2answers
190 views
Minify JavaScript and Attach Version Number using VS2010
I have a few goals I'd like to achieve but I'm unsure of how to get there:
Create a single-click deployment for my web project that includes a minified javascript file
Version my minified JavaScript ...
6
votes
3answers
100 views
Is “\/” valid inside a javascript regex?
Is the following code valid?
function test() {
return /\//.exec("\/");
}
alert(test());
It seems that many javascript minifiers (including jsmin at http://jscompress.com/) consider the "//" on ...
6
votes
1answer
415 views
Minify, how to clear cache?
I'm using Zend Framework with minify,
I updated Jquery and JqueryUI javascripts,
I cleared all browser cache, restarted the webserver,
but I still get the old files, how can I make it see the new ...
6
votes
7answers
316 views
Is there an advanced CSS minifier/compiler that does things like strip redundancy and comma separate identical rules?
For example
input{margin:0}body{margin:0;background:white}
would be shorter written like this
input,body{margin:0}body{background:white}
or this
input,body{margin:0}body{margin:0;padding:0}
...
6
votes
4answers
1k views
Any good Zend Framework + Minify implementations?
Are there any good implementations of Minify integration with Zend Framework? I'm looking for examples.
I'd love to have a plugin that overrides $this->headLink() and spits out the correct minified ...
6
votes
4answers
891 views
Magento: Minify HTML Output?
Is there any file in magento where all html will be output?
I want to minify all html output.
Thx!
6
votes
5answers
167 views
Is there a performance hit of replacing local variables with arguments in Javascript?
Is there any performance hit for writing a function such that local var statements are replaced with arguments? Example:
function howManyMatch(arr, pattern, /*ignored:*/ i, l, total) {
l = ...
6
votes
5answers
349 views
Javascript - To combine or not combine, that is the question
Ok, so I know that it's obvious to combine all of a pages Javascript into a single external file for efficiency purposes, but that's not quite the question here.
Say I have Default.htm with a search ...
6
votes
1answer
904 views
HTML Minification in C#
Tried searching around for a complete library for HTML Minification in C# but haven't been able to locate anything that is useful ?
Does anyone here have such a library or know of one ?
6
votes
4answers
212 views
Testing minified javascript
Should we test the minified versions of our javascript files as we develop them, or is it an extremely low risk that the minified javascript does not differ in function from the un-minified version?
6
votes
3answers
2k views
Minify HTML output from an ASP.Net MVC Application
This is likely a duplicate of the below question but the only answer is a dead link:
http://stackoverflow.com/questions/255008/minify-html-output-of-asp-net-application
When working with ASP.Net one ...
6
votes
2answers
1k views
What's the best way to minify the ASP.NET generated Javascript?
What's the best way to minify the ASP.NET generated Javascript, such as the ones served by webresource.axd, in ASP.NET 3.5 at runtime? I tried using the MbCompression module but it's not working with ...
6
votes
6answers
7k views
Is there such a thing as a javascript deminifier (deobfuscator)?
This question is exactly the opposite of http://stackoverflow.com/questions/489847/which-javascript-minifier-cruncher-does-the-same-things-that-the-one-google-use
I want to learn how google does it's ...