Tagged Questions

26
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
560 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
396 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 ...
12
votes
1answer
334 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
5answers
332 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
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 ...
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.
8
votes
5answers
97 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
460 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
302 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
237 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
2answers
232 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
149 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
253 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
177 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 ...
3
votes
2answers
45 views

Javascript minification of comparison statements

I was looking over one of the minified js files generated by closure. I found that wherever I'm checking for equality between a variable and string like, a == "13" || a == "40" closure replaces it ...
3
votes
6answers
98 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
5answers
464 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 ...
3
votes
4answers
135 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
348 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> ...
2
votes
1answer
157 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
153 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
3answers
78 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
190 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
2k 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
159 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 ...
1
vote
3answers
60 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
102 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
3answers
364 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
3answers
270 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
1answer
102 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
121 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
289 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
157 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
536 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 ...
0
votes
4answers
167 views

How to disable Javascript/CSS minification in ASP.NET MVC 4

I am just trying out ASP.NET MVC 4 but I can't figure out how to disable Javascript/CSS minification feature. Especially for development environment this will help greatly on debugging. I would ...
0
votes
2answers
38 views

How can I tell how big my file will be after gzipping, on Windows?

I can minify on Windows with Node + UglifyJS. So I can say "this change adds 123 bytes after minification." But I'd like to be able to saying "this changes adds 23 bytes after minification + ...
0
votes
1answer
38 views

WebBrowserControl + JS minification: Manipulate resources-properties with js code for minification puproses in Visual Studio's pre-build events

Background: Got a C# project which involves a block of javascript that gets programmatically injected in the web pages displayed by a webbrowser control. However, it is desirable to minify this block ...
0
votes
2answers
26 views

JS Minification / Closure Compiler changes numbers from base 10 to something else?

I'm running some JS through googles closure compiler and noticed something about how it handles numbers. It seems that they are converted into something other than base 10 and I can't figure out what ...
0
votes
2answers
69 views

How to download YUI compressor for minification only

I'm trying to download the YUI compressor to use on a Windows 7 platform. How do you do that? PS. I don't need to build it or anything like that, all I need is an exe file to run to compress my js ...
0
votes
2answers
104 views

Caspistrano post deploy uglify-js hook outputs but doesn't write files

I'm facing some strange issue, that sure isn't much, but hell, am I a noob; After deploying my app via capistrano, i'm passing all my css through the yui compressor, using : run "find ...
0
votes
1answer
83 views

Javascript conditional inclusion pre-minification: does such a tool exist?

All JS minifiers that I can find work by a combination of whitespace elimination, variable renaming, and regular compression. However, much more could be cut if the minifier was aware of which ...
0
votes
5answers
1k views

Packed/minified javascript failing in IE6 - how to debug?

I have a number of files which I combine and pack to produce a single, minified JS file. The problem is that when I minify the file (using packer), IE6 gives one of its characteristic helpful error ...