minification is the practice of removing unnecessary characters from code to reduce its size, thus improving load times.
0
votes
1answer
26 views
uglifyJs Application needed(JavaScript Obfuscator)
I want to know if there is any version of uglifyJS in a windows application mode(not web based app) or maybe another good application that is not web based.
This is the uglifyJS site.
Thank you
1
vote
1answer
9 views
How to use YUI Compressor in Ant build script for javascript and css
After a couple of days searching for how to use the YUI Compressor in an Ant build script I have finally got it working. Many old examples (<2010) exist for creating an Ant task and using that ...
0
votes
2answers
36 views
compress/minify an ajax/json script
Is there any way to minify/ compress an AJAX/Json script which removes the unnecessary whitespaces but leave the rest on is place, like
<?php } else { ?>
ecc. should stay there as it is.
The ...
0
votes
3answers
116 views
Minification of dynamic PHP pages via htaccess
I have a site with the files all being php files, on the server we also have htaccess doing rewrites for friendly urls, i.e. /about
We already have minification by PHP for JS and CSS, however due to ...
0
votes
3answers
51 views
Uglifying a RequireJS/Backbone project into one single .js file?
I worked along the following tutorial to try to optimize my project into one single .js file, but unfortunately I can't seem to get the expected results. I get r.js to create an optimized folder for ...
3
votes
6answers
494 views
Good resources for extreme minified JavaScript (js1k-style)
As I'm sure most of the JavaScripters out there are aware, there's a new, Christmas-themed js1k. I'm planning on entering this time, but I have no experience producing such minified code. Does anyone ...
0
votes
2answers
53 views
Javascript error when minified
I'm minifying Javascript in production with jsMin.php https://github.com/rgrove/jsmin-php/
Here is the unminified JS code:
function arc(r, p, a) {
return "A" + r + "," + r + " 0 " + +(a > ...
1
vote
2answers
103 views
Angular: Do the parameters of a directive's link function rely on DI?
In:
module.directive 'name', ->
(scope, element, attr) ->
# Whatever implemenation
Do the scope, element and attrs parameters of the link function rely on name-inferred ...
0
votes
1answer
33 views
Is it possible to enable JavaScript source maps in Safari 6?
I am working with some minified JavaScript code and really benefit from having source maps for debugging. In Chrome, I had no problem enabling source maps and they are currently working for me.
I'm ...
1
vote
2answers
25 views
Slimit python minifier strange behaviour
I am trying to minify some javascript with the Python 'slimit' package.
import slimit
slimit.minify('[1,2,3,4,5,6,7,8]')
runs fine and returns '[1,2,3,4,5,6,7,8]'
import slimit
...
4
votes
3answers
260 views
WP HTML minification class not working
I found this script on http://www.intert3chmedia.net/2011/12/minify-html-javascript-css-without.html. It's supposed to minify (not compress as the class name suggests) HTML:
<?php
class ...
0
votes
1answer
63 views
Why to obfuscate a JavaScript code is a bad style?
I know, that in the society of the web-developers to use a minifying process for their JavaScript code representing as a well stuff. But if you want to obfuscate a JavaScript code, such an action will ...
0
votes
1answer
83 views
replacing image paths in minified css with sed
I am concatenating all the css files and minifying them and putting it in a dist directory for distribution. The css files I am concatenating are in various vendor folders and have image paths ...
0
votes
2answers
37 views
Mangle nested classes and variables with uglifyjs
I use uglifyjs to minify a concatenated set of files, which works fine but not good enough. The built lib uses namespaces, so classes, functions and constants are stored in a root namespace variable:
...
4
votes
2answers
981 views
Should I use minified or regular versions of jQuery plugins during development and deployment?
As many of you know, most jQuery (or javascript, for that matter) plugins you find these days can be downloaded as either regularly formatted code, minified version, or both. For development purposes, ...
1
vote
2answers
34 views
Minifying jQuery plugin scripts?
I am using two or three jQuery plugins on my web page and I have located the source of these plugins but there is no minified version available. Due to licensing and any other rules I have to follow, ...
0
votes
1answer
5k views
Error 330 net::ERR_CONTENT_DECODING_FAILED with Minify on first load
Minify is a PHP5 minifier for JS and CSS files : http://code.google.com/p/minify/
When I modify a CSS file then reload the page via Google Chrome, on the first load, I have this error :
Error 330 ...
2
votes
1answer
31 views
whats the difference between the min and the regular file and which one should i use?
whats the difference between the normal and the min qoodoo js file?
Which file should I use to write some js for my web browser?
Thanks
0
votes
1answer
28 views
website to collate and minify multiple JS files
This might seem a little lazy, but is there any service online that will collect javascript from diverse URLs I could provide and collate them together into one minified file? It would just be easier ...
-1
votes
0answers
11 views
How to exclude lazyload.min.js from minify?
I have some issues with minify and lazyload. So I want to exclude the lazyload.min.js in the minify.php, but I dont know how? Some tips?
0
votes
0answers
19 views
Elfinder minifying issue
A have a little problem with minifying elFinder. I was followed official guide:
https://github.com/Studio-42/elFinder/wiki/Build-and-compress-elfinder-from-source
But I'm stuck here:
...
1
vote
1answer
110 views
Which CSS Minifiers/Compressors don't omit the unit of time values?
The anser to the question "Units on “0s” Transition in Firefox" points out that it is not valid to omit the unit of time values. My first but not main question would be:
Is this true? Is it for sure ...
2
votes
1answer
94 views
Javascript simplifier?
I would like to eliminate functions that are unused or not related to the given context. Let's say we have:
function a(){ console.log('this is an unrelated function'); }
function b(){ ...
23
votes
9answers
12k views
0
votes
0answers
60 views
W3 Total Cache “Minify URL not working” error and minify w/ path wrong
Using W3TC Version 0.9.2.9 and WP 3.5.1
Our site has a different site url and wordpress url. For instance, test-cms.infousa.com and test.intra.infousa.com. One is the public domain, the other is the ...
0
votes
2answers
31 views
Compress embedded Javascript in HTML markup
If you have a separate .js file, you may simply compress it with tools such as Yahoo YUI Compressor.
But, how can I compress embedded Javascript in every pages in my project?
(Copying the Javascript ...
4
votes
3answers
504 views
Minify indented JSON string in .NET
I have an indented JSON string e.g.
{
"a": 1
}
However, I don't have the type of the instance to be serialized or deserialized.
In my situation, what's the most efficient way to minify a JSON ...
2
votes
1answer
178 views
Can I bundle App_Themes css files with Microsoft.Web.Optimization?
Does anyone know if it is possible to bundle and minify Webforms App_Themes using Microsoft.Web.Optimization?
0
votes
1answer
32 views
Concatenating multiple statements using Commas vs Semi colons
While working with minified Jquery I noticed multiple statements concatenated by commas.
For Example
event.preventDefault();
event.stopPropagation();
jQuery.event.trigger( event, data, this[0] );
...
2
votes
2answers
53 views
how to delete python code that's not covered
Is there a tool that removes python code that isn't covered at run time, or a tool that removes code that isn't depended on by a particular function? If not, what would be a good approach?
Here is my ...
5
votes
2answers
357 views
Does anyone knows a REST based CSS minifier?
I have a handler that needs to read the content of a CSS file, and then output the content minified.
So thats why I'm looking for a minifier that would work as a REST api, so I can send content, and ...
1
vote
1answer
27 views
Referencing Minified Content in Asp.Net / MVC
We have dozens of scripts referenced in our web pages (MVC).
To optimize the site if i minify and merge all scripts into one file , do i need to update those dozen references in each webpage with ...
34
votes
2answers
16k 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 ...
1
vote
1answer
49 views
Source code lost. Minified file available. How to unminify the file.
I have a javascript file in minified version. I have lost its original source code. How can i recover my source code from my minified version?
The variable names are appearing as _1, _2 etc. Is there ...
0
votes
3answers
47 views
Why would my global variable be undefined in the minified version of my javascript file?
I have a variable
var globalValue = 700;
declared at the top of my aScript.js script file, this variable is being accessed by another function aFunction() in the same file.
While everything ...
24
votes
2answers
626 views
Is there any point of using “return !0” in javascript?
If you go to a google result page, and run rwt.toString(), you'll see that the return call for this function is:
return !0;
I can't think of any reason why this wouldn't always be true. Is this ...
2
votes
3answers
365 views
remove redundant css rules from dynamic website
I'm trying to reduce the size of my CSS file. It is from a template which is very CSS & JS heavy. Even with CSSMin the CSS file size is 250kb.
Whilst I use alot of the CSS - I know I dont use it ...
2
votes
5answers
623 views
XML Minify in .NET
I'd like to read in the following XML:
<node></node>
And then write it out, minified, like this:
<node/>
Obviously this has the same meaning, but the second file is smaller for ...
60
votes
7answers
46k 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!
31
votes
5answers
4k 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. My question is: would clients see a visible ...
6
votes
2answers
2k 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 ...
0
votes
0answers
55 views
how to minify javascript generated by ASP.NET
I knew few javascript file compressors/minifiers. Lately I am using pagesped and Yslow which sugegsted that all java script should be minified. Hence we minified all the inline script too. Still we ...
0
votes
0answers
34 views
Google minify Script & minify Stylesheet is not working in Zend Framework,
I had integrated google minify Script & minify stylesheet using following library,
http://code.google.com/p/minify
its working fine in my localhost project and project is in Zend Framework ...
0
votes
2answers
44 views
More Granular Closure Compiler Flags?
I am using closure compiler to minfiy and concatenate my scripts and I would like to use the ADVANCED_OPTIMIZATIONS flag to get even more minifying magic out of it. However some of the scripts I have ...
0
votes
1answer
69 views
Minify 2.1.5 works on localhost but not on live server due to document root issue
The problem:
My /min/ files are in different places for my local and live server:
localhost/min/
/mnt/foo/bar/hello/example.com/web/content/min/ (from $_SERVER['DOCUMENT_ROOT'])
Min works fine on ...
0
votes
2answers
300 views
How to Configure Rock Star Apps plugin in Eclipse for Concatenating and Compressing Javascripts
I am using the rockstarapps plugin for concatenating and compressing/minifying .js files with Google Closure.
I chose the option to rebuild files when a dependency changes but now I would like to ...
0
votes
1answer
49 views
Yui_compressor not working in symfony 2
I used this guide to adding the yui_compressor to my symfony project. But its not creating the minified files. Below are the settings I applied, please take a look and tell me what might be going ...
1
vote
1answer
33 views
Merge Common Selectors (using Codekit)?
If I have a file called 'structure.scss' and inside this file I have the code
body { margin: 20px; }
and I have another file called 'fonts.scss' with the following code inside
body { color: red; ...
1
vote
2answers
545 views
Using grunt js to both minify and concatenate without a *.con.js file
I've been using grunt.js to concatenate and then minify javascript files. The way I've been accomplishing this task leaves me with an extra script.con.js file (the concatenated file). I don't find it ...
0
votes
0answers
78 views
Combine and minify js file using nodejs dynamically
I am new to nodejs and grunt.
I was going through the less-middleware and was very impressed with the way it automatically creates the css files. I now want the same for js files also. Let me ...



