Tagged Questions
Minification is the process of removing all unnecessary characters from source code, without changing its functionality.
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 ...
24
votes
6answers
1k views
Is there a plugin that allows me to automatically unminify the Javascript included on a site?
Is there a plugin, add-on, Greasemonkey script or something similar (at worst, an easy to use proxy?) that automatically unminifies the Javascript files included on a site?
I know about e.g. ...
18
votes
7answers
549 views
Reduce HTTP requests or not?
A theoretical question:
We all know about the pro's of minifying and combining javascript files in order to reduce HTTP requests to speed up a website. But when popular javascript libraries is used ...
14
votes
8answers
359 views
Is there any point to JavaScript minification if you have compression turned on?
If your website has deflate/zip compression enabled is there any point to JavaScript minification?
My theory is that the difference between a compressed minified JavaScript file and a compressed ...
11
votes
5answers
321 views
How important is using tiny variable names in Javascript?
It seems like, for many javascript widgets, the authors have made a conscious effort to use tiny variable names. For example:
// Instead of...
this.mousePositions = new Array();
// they use...
...
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
8answers
1k views
Which javascript minification library produces better results?
Between Yahoo! UI Compressor, Dean Edwards Packer and jsmin, which produces better results, both in terms of resulting footprint and fewer errors when obfuscating.
10
votes
6answers
4k views
How do you automate Javascript minification for your Java web applications?
I'm interested in hearing how you prefer to automate Javascript minification for your Java web apps. Here are a few aspects I'm particularly interested in:
How does it integrate? Is it part of your ...
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
11answers
446 views
Optimizing javascript and css requests
I need to optimize the loading speed of several existing websites. One of the issues that I have is the amount of requests per page. The websites have 7 or more different types of pages which should ...
7
votes
7answers
276 views
How do I optimize my website for slow data connections?
I'm about to start work on performing some performance enhancements for one of our products.
Our users connect to the network using radio which is extremely slow. The main bottlenecks in the ...
6
votes
3answers
224 views
Tool for HTML whole-page minification?
I have a fairly stand-alone page, and I'd like to make it as small as possible: inline minimized Javascript and minimized CSS, and then minimize the HTML itself. There's tools for each of these ...
5
votes
3answers
113 views
Are CSS Minifiers that combine elements destructive?
I found this CSS minifier (http://www.lotterypost.com/css-compress.aspx). There is a section at the bottom of that page labelled "What does the CSS Compressor purposely NOT do?" There are four ...
5
votes
4answers
335 views
Best practices - Only download CSS you need, or use a minification process?
In the context of improving overall site performance (downloading and rendering speed) there appears to be a contradiction between the following two best practices:
Only bring down the CSS that you ...
5
votes
4answers
2k views
Server-side auto-minify?
Is there any way to automatically minify static content and then serve it from a cache automatically? Similar to have mod_compress/mod_deflate work? Preferably something I could use in combination ...
5
votes
2answers
230 views
Supplying non-minified CSS/javascript on demand
Minfying your stylesheets and script files improves your site's performance.
However, sometimes you might want to make the non-minified versions of the files available - perhaps to comply with the ...
4
votes
4answers
122 views
Are there libraries for packing and minifying multiple CSS and JS files into one file each?
According to O'Reilly's High Performance Web Sites (pages 15-16), it's highly recommended to make as few HTTP requests as is possible for high-performance. Thus, is there a library for combining ...
4
votes
2answers
1k views
best javascript compiler/ minifier
I rember having seen a new javascript compiler/ minifier on github which should even be better than google's closure compiler. Unluckily I cant remember its name and find it again. Maybe someone can ...
4
votes
5answers
241 views
Minifying CSS, JS, and HTML - together
Minifying JS and CSS is quite common. The benefits of minifying JS are much greater that those seen with CSS because with CSS you can't rename elements - and same goes for HTML. But what if all 3 were ...
4
votes
1answer
171 views
Javascript minification with semicolon insertion
Is there any Javascript minifier/compressor which will insert semicolons as necessary (or, one which works with source code which doesn't use semicolons)? I've started using a library which is really ...
4
votes
3answers
293 views
Optimizing website - minification, sprites, etc
I'm looking at the product Aptimize Website Accelerator, which is an ISAPI filter that will concatenate files, minify css/javascript, and more. Does anyone have experience with this product, or any ...
3
votes
6answers
80 views
JavaScript minification and compression
I am trying to understand JavaScript minification and compression processes and have couple of questions on these:
Since minification makes the code difficult to debug, is it possible to do ...
3
votes
4answers
130 views
How does javascript engine understand minified JS scripts?
usually, if plaintext is compressed, there must be decompression routine.
How does js engine interpret minified compressed js scripts??
Does js engine have built-in deminification algorithms??
3
votes
4answers
331 views
Javascript minification automatization
I have a website, that uses a lot of jquery/javascript. Now, at the index page I have about 10 javascript files included in the head:
<head>
<script src="/js/jquery.js"></script>
...
3
votes
2answers
435 views
Django-compressor and template inheritance
I'm using the django-compressor app in Django 1.2.3 to minify and merge a number of included CSS and JS files. In a base template, I have
{% load compress %}
{% compress js %}
{% block js %}
...
3
votes
1answer
233 views
C# Code Minification Tools and Techniques
I realize this is a rather odd request, but I was wondering if anyone was aware of some minification/obfuscation tools that work on C# source code (not a compiled assembly). I am trying to reduce the ...
2
votes
1answer
133 views
ScriptResource.axd with MbCompression
I'm using MbCompression library and I'm want to know - does MbCompression minifies ScriptResource.axd? And are there any tools that can minimify ScriptResource.axd at runtime with minimum changes to ...
2
votes
4answers
134 views
How do I automate Javascript and CSS minification on Google App Engine?
I couldn't find any proper solution for automating Google App Engine CSS and Javascript minification.
2
votes
4answers
357 views
Alternatives to Cassette?
Andrew Davey created a very nice library to allow on the fly minification and concatenation of js/css files to ASP.NET MVC projects. However, I'm using WebForms with .NET 3.5 and I'm thinking about ...
2
votes
3answers
76 views
How to share javascript application with others safely?
I have a JavaScript application that I want to share its source with a colleague for the sake of helping/supporting him in his research. Still, I want to make sure that he won't use it for commercial ...
2
votes
2answers
169 views
Is there a plugin which will automatically minify and cache JavaScript?
I'm getting ready to start on a new project and I'd like to know if there's a way to automatically minify JavaScript on the server side, providing caching once the JavaScript has been minified once ...
2
votes
1answer
1k views
requireJS Optimization : “Uncaught TypeError: undefined is not a function”
I am using requireJS for the first time. I got it working fine then came to optimize the files to minify and concatenate and now I get the error "Uncaught TypeError: undefined is not a function" the ...
2
votes
3answers
154 views
JavaScript minification of string literals?
I was looking over some of our JavaScript compression and noticed that no strings that aren't object property names are minified into variables.
For example, let's say I have these two pieces of code ...
2
votes
3answers
447 views
Inclusion Handling in MVC 2 / MVCContrib
I'd like to improve my page by combining and minifying javascript and CSS files. Since MVCContrib already contains a project called IncludeHandling, I took a look at that which unfortunately left me ...
1
vote
0answers
12 views
Using Jsmin build event in Visual Studio to combine files
Im having trouble using JSmin to combine and minify my files on successful build:
I think my syntax is correct but the output is empty
if $(ConfigurationName) == Debug goto :exit
if ...
1
vote
1answer
51 views
HTML minifier puts every tag on a new line
I am using a html minifier, which can be found here: HTML minify
The strange thing to me is that every tag is placed on a new line. Is this common behavior or am I doing something wrong. The output ...
1
vote
1answer
49 views
Using Chirpy with Razor Syntax
I've just started using Chirpy (Both v2.01 and v2.03 - http://chirpy.codeplex.com/), and whilst it works great with .js and .css files, I'm having a bit of trouble with any Razor Syntax in VS 2010.
...
1
vote
3answers
56 views
Browser add-ons for switching between minified and regular .js or .css
Is there a browser add-on (for firefox or chrome) that would easily let me open a non minified version of a script file?
eg, a production website would load script.min.js, but usually the script.js ...
1
vote
2answers
99 views
What Are The Cons (Ill-Effects) Of HTML, JavaScript and CSS Minification?
First, I see that Google suggests minifying everything - - HTML, JS and CSS to increase performance.
But I doubt it does only good, and no bad; especially because many of the popular websites haven't ...
1
vote
1answer
69 views
Shell script minification tools similar to jsMin et al?
I'd like to compress some shell code for deployment on an embedded linux platform with limited flash memory
Obviously you could try to kludge things using regexes to search for whitespace, but the ...
1
vote
3answers
326 views
How to preserve global variables in javascript when using Closure compiler with advanced optimization?
I have my own Javascript library, which I want to minify by using Google closure compiler with Advanced optimization. By looking at the docs I see how to declare functions which are used outside of ...
1
vote
1answer
1k views
Combine and minify templates with CoffeeScript / Cake
I have a src/templates/ directory full of mustache templates. How would I combine and minify the contents of those, so they're available for use in my CoffeeScript app?
I'm already following the ...
1
vote
3answers
243 views
javascript - how to minfy/obfuscate global function names?
I have some code that has the following format:
function myfunc1 () { ... jquery.bind('click', myfunc2) ... }
function myfunc2 () { ... }
...
Yes, the functions are global, but it's ok since I'm ...
1
vote
3answers
208 views
Is there a CSS minifier than can resolve import statements?
Is there a CSS minifier tool that can resolve @import statements?
I'd like to be able to load multiple CSS files on my local machine but have them all resolved into one file when the website gets ...
1
vote
1answer
94 views
Automatic Script Minification and Combination?
Does anyone know what is being used in this article (Building an HTML5 App with ASP.NET by Stephen Walther) to compress the javascript files?
About 1/2 way down in the blog entry, he says: "All of ...
1
vote
4answers
118 views
Ripping JQuery from unnecessary/unused pieces: is this possible?
Is it possible to ONLY use portions of JQuery, just like with JQuery UI: customize ones own build in an easy way?
What i mean is imagine you ONLY need JQuery library for a silly, tiny but handy tool ...
1
vote
6answers
272 views
Minifying and Obsfucating CSS similar to Javascript
I know there are several tools out there that are capable of obfuscating JavaScript files such as by turning a simple functions like:
function testing()
{
var testing;
var testing2;
...
1
vote
3answers
148 views
When I minify css or js, why isn't it all on one line?
I understand that minifying tries to reduce file size by removing whitespace characters. Sometimes things end up on one line, but more often than not, there are multiple lines. I noticed that line ...
1
vote
1answer
510 views
VSDoc alternative?
VSDoc is an awesome way of commenting Javascript, and I particularly like the ability to make one Javascript file 'depend' on another. This paves the way for Javascript minifiers/combiners that take ...
1
vote
3answers
330 views
texture minification filter in raytracing?
can someone point me to a paper/algorithm/resource/whatever that tells me how to implement a texture minification filter (applies when texels are smaller than pixels) in a raytracer?
thanks!