Tagged Questions
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(){ ...
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 ...
1
vote
2answers
124 views
Minify Javascript using JSMin.php
I have a website with JSMin minification on server side. The problem is that my server became slow after implementing the JSMin
This happens because there are urls that import some other specific ...
1
vote
1answer
68 views
Is there a benefit to pack third-party JS & CSS libraries along with my project assets?
I want to start using minifying tools such as Minify, Uglify or Closure to speed up the loading of my pages.
My project relies on several bulky libraries (jQuery, Bootstrap, ...).
I'm considering ...
2
votes
1answer
54 views
Why this minified code run slowly in Opera Browser?
I am testing JavaScript minifiers: Yahoo! YUI Compressor and Google Closure Compiler, comparing the visual result in http://text-compare.com and comparing the performance results in http://jsperf.com. ...
0
votes
1answer
33 views
For bold to 700 for normal to 400 when minify css
When I minify my css with online css tool for example http://www.csscompressor.com/, tool convert font-weight:bold to font-weight:700; , font-weight:normal to font-weight:400; why?700 or 400 usage for ...
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;
...
4
votes
4answers
715 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 ...
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 ...
4
votes
3answers
2k views
Uglify-js doesn't mangle variable names
Trying to prepare good build environment for my js library. According to reviews on the web UglifyJS seems to be one of the best compressing modules out there, working under NodeJS. So here is best ...
2
votes
2answers
780 views
multiple script tags and concatenation + minification + preprocessing
I have a html file with multiple script tags(close to 20). I've decided to concatenate all the JS files into one and then minify the concatenated file. I am using ant tasks to concatenate and will do ...
0
votes
2answers
407 views
Javascript one request for multiple JS files
I was thinking about creating script that would do the following:
Get all javascripts from JS directory used on server
Combine all scripts to one - that would make only one request instead of ...
2
votes
4answers
279 views
What do I do with this 800kb javascript file?
I read that concatenating and possibly gzipping a javascript file will make an application run faster, so I decided to give it a go.
I figured most of my pages (although not all) were downloading at ...
1
vote
1answer
1k views
Dynamic/Automatic Javascript and CSS Combining and Minification
I know I have seen an article this somewhere (specifically related to Azure too!) but I forgot to bookmark it (doh!) and after hours searching can't find it anywhere :(
I have a MVC Application ...
2
votes
2answers
615 views
How to minify XML with PHP?
I have a php script that reads an XML file and modifies it with SimpleXML. After all the modifications are done script saves the file (size ~ 2.8 mb).
I need to load this XML file with jQuery and it ...
1
vote
2answers
1k views
ASP.Net MVC Razor Views - Minifying HTML at build time
Firstly, whilst I'm aware that gzipping HTML would probably have as much (more?) of a performance gain as minifying HTML - I am certainly intrigued by whether the following technique could work - or ...
1
vote
1answer
452 views
Leverage browser caching in minified javascript and timthumb.php
I am attempting to leverage browser caching on the following resources:
...
2
votes
1answer
399 views
Minifying JS/CSS files
I have a template that has over 20 js/css files that it references to and of course this makes for a lot of http requests. I thought about stitching them together with php using minijs.php/mini.php ...
4
votes
3answers
1k views
Combine Javascript/CSS into one file or two for better optimization
I am currently working on an c# application that minimizes and combines javascript/css asynchronously in the background to load on to the page which completed. Once the combined minimized file(s) are ...
1
vote
2answers
742 views
php speedy or google minify - which is best?
I want to implement css and js minifier for my site.
So which one is best in terms of performance, flexibility and configuration ?
0
votes
1answer
70 views
Jquery custom core : use just what you need
As you may have guessed, i'm trying to speed up page loading on my website.
So since I Don't use most of jquery's functions, I thought that I could use a "lighter" version.
Is there an easy way to get ...
1
vote
1answer
176 views
Combining CSS and JAVASCRIPT via intelligent automated php script
found a nice program in this discusson that combines CSS files into one, to speed up and fasten the CSS load. It works and makes all my css files into one tiny heap, BUT the page shows as text (the ...
1
vote
4answers
200 views
Improving the web site performance
I have a pretty big web site (asp.net web) and I have used JavaScript intensively (jquery,custom javascipt, etc) and also The theme and CSS. Right now I have a huge amount of js and css files in my ...
8
votes
4answers
2k 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 ...
0
votes
1answer
392 views
how to remove spaces and newlines from server response?
When i request a page using browser / AJAX request i see lot of spaces and newlines which i think must be adding some overhead for retrieving the response as they too belong to characters means bytes ...
3
votes
2answers
272 views
Is there a good .Net CSS aggregator that combines style sheets and minifies them?
I am looking to see if there is an open source/free project that provides a CSS manager. I am looking for this mainly for performance tweaking and hoping there is a readymade project rather than ...
12
votes
3answers
935 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 ...
20
votes
2answers
8k 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 ...