minification is the practice of removing unnecessary characters from code to reduce its size, thus improving load times.

learn more… | top users | synonyms (1)

0
votes
2answers
132 views

Cache javascript failed, because of the use of external javascript

I've use YSlow to check the load-speed of my web. According to the rule, it is better to have one big external javascript rather than many external javascripts. It is written in the rule that using a ...
0
votes
1answer
59 views

Meleze.web and Web.Config transformation

I'm using the Meleze.Web library for my web application and I want to add the compression only on release builds. I tried to do a web.config transformation but in the Web.Release.config file, when I ...
0
votes
1answer
106 views

YUI compressor regex confusion

I'm using YUI compressor to minify and combined some JS files. I can minify individual files no problem using this: TimPeterson$ -jar yuicompressor-2.4.7.jar /assets/js/input1.js -o ...
1
vote
1answer
42 views

Would there be a performance difference if CSS is written minimizing the amount a property is called instead of a selector?

To clarify: Right now, most likely due to readability, CSS is written somewhat like so: element { text-decoration: underline; } #selector { font-size: 50px; color: red; ...
0
votes
1answer
167 views

mod RewriteRule to redirect css requests to minify?

I am attempting to redirect all requests of the main stylesheet called styles.css to the minify script of min/g=css so that I may be able to work on the CSS file live and just have the server use ...
0
votes
1answer
216 views

Granule - JavaScript/CSS minification SIMPLE/ADVANCED optimization is not working

I setup Granule optimization solution on fly (not build process) for my web application by following the installation steps at the bottom of this page: https://github.com/JonathanWalsh/Granule Granule ...
0
votes
1answer
54 views

Turn off compilation of files during Minification during Dojo build

I am using Dojo Build system to build my project and minify the files. I am getting an error during the build and am unable to locate the source. So I want to skip the compilation/optimization step ...
0
votes
1answer
82 views

using TSQL to “minify” javascript code?

This may seem like an unusual request, but does anyone have T-SQL (MSSQL2008) code to "minify" javascript code? I have a MVC site that uses a series of stored procs to generate the contents of a *.js ...
2
votes
2answers
160 views

can you not compress CSS but work on it later?

I've even looked at CSS Crush, Minify, SmartOptimizer, CSSTidy and a slew of other PHP CSS compressors. But they all have one major flaw. You can't use this: <link rel="stylesheet" ...
0
votes
1answer
1k views

Visual Studio 2012 ASP.NET bundling fails part way through

I'm trying to setup VS 2012's new bundling functionality (via the Microsoft.Web.Optimization package - read more here) and for the most part, everything is working alright. The problem is that the ...
2
votes
1answer
2k views

AngularJS inject service into module without using variable so it can be minified

I'm trying to minify my AngularJS JavaScript (using SquishIt). My module has an injected service as a function argument, like so. var myapp = angular.module('myapp', ['ngSanitize'], function ...
0
votes
1answer
89 views

CLI plain CSS Minifier, not SASS or LESS

Does anyone know of any CLI CSS Compressors for just normal css files? Not for SASS/SCSS, or LESS, or Stylus. I would believe that there would be a compressor available for just compressing style.css ...
2
votes
1answer
319 views

Does it make sense to minify code used in NodeJS?

I was wondering, since Clojure Compiler and UglifyJS not only optimize code for size but also for performance (although I think size is the main priority), would my node.js app run faster if it was ...
1
vote
1answer
324 views

Combine, minify, and replace references to JS and CSS files

Is there a solution out there that will combine and minify js and css files, and then replace the references to them in the original html files? I've found a number of solutions that will minify and ...
1
vote
1answer
186 views

Why won't YUI Compressor munge these function names?

This is the input: function local2functionA() { local2functionB('hello'); } function local2functionB(text) { alert(text); } This is the output: function ...
0
votes
1answer
45 views

Combining and minifying cross-script variables

I'm looking to combine and minify my JavaScript files. I have a question; on my pages I basically have the same library JS files, and then one 'specific' JS file to run code for that page. I also ...
1
vote
3answers
82 views

Safely wrap JS files so when they are concatenated they still work

I am using PHP to concat' several JS and CSS files. The CSS is fine. The JS however breaks, but only some of the files break. I then stop these from being added and they then work again as individual ...
0
votes
2answers
84 views

Looking for a good on-line JS obsfucator for minifying purposes only

I've seared the web, but these tools, I found and tested, doesn't seems to be enough for me. BrainJar's Chrunchinator does a very good (in my opinion) minifying job, but without any code ...
5
votes
4answers
355 views

Why does CoffeeScript wrap class definitions in a closure?

In CoffeeScript, this: class Foo method: (x) -> x+1 Compiles to: // Generated By CoffeeScript Foo = (function() { function Foo() {} Foo.prototype.method = function(x) { return ...
2
votes
1answer
403 views

HTML/CSS/JS build tool

I have a project which consist of a lot of static HTML and js files. I need a build tool that can concatenate and minify them. I saw this great screencast that explains how to do it with ant and YUI. ...
1
vote
1answer
111 views

javascript loader optimizer based on php?

I'm building a web-app framework and I'm looking for a way to compile javascript & css source files at runtime and I'm hoping for some suggestions. I have used Require.js however the optimizer ...
4
votes
4answers
718 views

Put javascript and css inline in a single minified html file to improve performance?

A typical website consists of one index.html file and a bunch of javascript and css files. To improve the performance of the website, one can: Minify the javascript and css files, to reduce the file ...
0
votes
2answers
413 views

minify html output to one line

Just take a look at Ask.com homepage source. It's one long line. How to remove line-breaks and other unnecessary codes from final html output? (Views content) forexample: <div id="test"> ...
0
votes
2answers
260 views

Minfy CSS and Javascript that includes @import url (ASP.Net)

I have about 20 CSS files loading on my page, and I am looking for a tool to minify my CSS and JavaScript. I really like SquishIt, but it doesn't seem to handle css that is loaded via @import url. ...
1
vote
1answer
346 views

Usage of YUI Compressor Maven Mojo minifying javascript

I work on a struts2 project using maven to compile. I am trying to minify the javascript files, which are located in different locations. <plugin> ...
0
votes
1answer
56 views

http compression and minify

Hi getting close to finishing my coding and looking into compressions but can not find out if it advisable to do the following: Is it best to minify scripts and html and use http compression or ...
2
votes
1answer
105 views

Does minifying impact performance of Node.js?

In Browsers minifying and concating or loading asynchronous JavaScript has a positive performance impact. Is this also true for code running in Node.js? As Example would excessive commenting and ...
0
votes
1answer
72 views

Connect-assetmanager file does not match req.url

No matter what I do, when I enter a js file (http://localhost:3000/static/js/backbone.js) in the url, it shows the last file asset manager cached. So in this case it is showing jquery.js even though ...
0
votes
1answer
115 views

Getting minify (css/js compression) to work on dedicated server

I am using minify http://code.google.com/p/minify/ or https://github.com/mrclay/minify/ I have no trouble getting min to work on my local environment, and localhost:8888/min/f=min/quick-test.css ...
1
vote
1answer
105 views

Windows Batch file that uses lines from a file to construct arguments in a command [duplicate]

Possible Duplicate: How do you loop through each line in a text file using a windows batch file? Need to use a large list of file names to construct an argument that goes to an application ...
4
votes
2answers
187 views

MVC4 Bundling Strategy

I'm using the new Bundling feature in ASP.NET MVC4. Currently I have the following bundles configured: ~/js/jquery ~/js/forms ˜/js/bootstrap Depending on the view I'm serving I usually call a ...
2
votes
2answers
210 views

How do I export a minified CSS file using client-side less.js?

I have a web project I'm working on and it is using LESS to combine all the files into one CSS for me. However I obviously don't want the client side javascript to have to run in production as that is ...
0
votes
6answers
300 views

C# IF statements, and doing things very specifically from which is true

So, to start, I have seen posts like this: How to find which condition is true without using if statement It's not quite what I need, although the idea is pertinent, in that I would like it to be ...
4
votes
2answers
160 views

Combining CSS files: per site or per page template?

We all know that we're supposed to combine our CSS into one file, but per site or per page? I've found pro's and cons to both. Here's the scenario: Large site CSS files broken out into one file ...
2
votes
1answer
781 views

Minify media query?

I have a completely valid CSS stylesheet, which works, and queries are recognized, but when I minify (and concatenate) the stylesheets with SquishIt, the media queries seemingly stop working, and I ...
3
votes
1answer
2k views

How to package (minify) an extjs 4 application

I am looking for de facto instructions for packaging and minfying an Ext JS 4 app. Everything seems to point to the Sencha SDK, but everything around this is targeted at Sencha Touch, and anyway, ...
0
votes
2answers
98 views

How to validate minified CSS

When i attach my CSS files separately everything works fine in IE ,However when i combine my CSS into one file and minifiy it everything starts to break . Is there a way i can validate the minified ...
0
votes
1answer
102 views

How to utilize a js minimization for a web site of a big organization

I am looking for a JS minimization (maybe CSS as well) tool to use in our website. The site is fairly big and we cant manually minify files individually. We are also planning to use Long term caching ...
4
votes
1answer
1k views

Nginx Reverse Proxy SSL / Minification

I am trying to use NginX as a reverse proxy for a few IIS Servers. The goal is to have NginX sit in from of the IIS / Apache servers caching static items such as CSS / JS / Images. I am also trying ...
3
votes
1answer
385 views

Tools for JS and CSS file concatenating

I recently started working with a large code base with many (15-20) js requests per page. I'm tasked with optimization and performance improvement of these sites. I've been using tools like Google's ...
0
votes
2answers
188 views

Minify jQuery generated with JSP

I have web pages generated by JSP which sometimes also include jQuery code. Some of the AJAX calls within jQuery need parameters from JSP. Example: $.ajax({ url: ...
2
votes
3answers
551 views

Removing debug code from inside a function using Closure Compiler simple optimisations

I'm looking for a way to strip out debug code from functions so I can add test hooks to closures. I've read Google Closure Compiler advanced: remove code blocks at compile time and tested out ...
1
vote
1answer
151 views

How to globally disable minification in Minify

I'm using Minify - http://code.google.com/p/minify/ to combine my .js files into one but Minify is also minifying/compressing the JavaScript files as well and I don't want that. I know there is a ...
0
votes
1answer
103 views

Minify JavaScript with JavaScript?

Since I've heard people whining how PHP can't handle it, how about minifying JavaScript with JavaScript itself? I want something that I can just copy and paste and use right away--my JS file is about ...
0
votes
3answers
370 views

Minifying and inlining tool for less

I am looking for a tool to minify a website to one file. I found inliner but it also inclue my less client script and I would like my less to by compiled to css and be included. I want to inline ...
0
votes
1answer
95 views

Unable to initialize plugins with jQuery(document).readyy after minified code?

trying to consolidate my JS so I've got a number of jQuery Plugins such as Superfish minified within one JS file and just below, in the same file, I initialize the various plugins within ...
2
votes
3answers
189 views

Can I use CombineAndMinify for asp.net if I don't use Ajax toolkit

I want to speed up the load time of my website. I have studied to implement 'CombineAndMinify' dll or package for Asp.net. My website does not use the Ajax toolkit, so can I still use ...
3
votes
3answers
120 views

CSS Minification script misses some CSS3 properties

I have a lot of newer CSS3 properties in my CSS file, and I'm afraid that the minification tool I'm using is missing a lot of these properties: .big-blue-button:hover { text-decoration: none; ...
0
votes
2answers
318 views

Git web development workflow, commit links to minified css and js?

I have read about implementing git hooks to minify css and js source files post-commit (as minified assets shouldn't be committed) but what is the best practice when committing the actual links to ...
1
vote
2answers
146 views

Request multiple S3 files into one request

Is there a way to get multiple files from S3 (or any CDN) in one request? For example, I have four files on S3: example.com/cdn/one.js example.com/cdn/two.js example.com/cdn/three.js ...

1 2 3 4 5 13