Connecting Tech Pros Worldwide Forums | Help | Site Map

JavaScript code minimizer (not obfuscator!)

Laurent Bugnion [MVP]
Guest
 
Posts: n/a
#1: Feb 23 '07
Hi group,

A few years ago, I translated Douglas Crockford's JsMin from C to C#,
because we wanted to use this functionality in our build process. JsMin
is a code minimizer for JavaScript. It will remove all comments, empty
lines, turn tabs into single spaces, etc... The goal is to reduce the
size of JavaScript files to the minimum necessary, without modifying the
functionality.

Additionally to reducing the script's size, JsMin also makes it more
difficult to read, however it is not an obfuscator. Objects, variables,
methods names are not modified. While such a functionality wouldn't be
very difficult to add, we believe that it is pointless to obfuscate
JavaScript files.

Note: This is a direct translation from C (procedural) to C#. I didn't
refactor the object too much, so the design is far from perfect, but it
works well.

Note 2: I just found out that Douglas translated JsMin from C to C# too,
his version is available on his site, so pick the one you prefer ;-)

http://geekswithblogs.net/lbugnion/a...23/107120.aspx

HTH,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Matt Kruse
Guest
 
Posts: n/a
#2: Feb 23 '07

re: JavaScript code minimizer (not obfuscator!)


Laurent Bugnion [MVP] wrote:
Quote:
JsMin is a code minimizer for JavaScript. It will remove all
comments, empty lines, turn tabs into single spaces, etc... The goal
is to reduce the size of JavaScript files to the minimum necessary,
without modifying the functionality.
Is there any benefit to JsMin over Packer?
I admit, I've not compared the two, but I use Packer.

--
Matt Kruse
http://www.JavascriptToolbox.com
http://www.AjaxToolbox.com


Laurent Bugnion [MVP]
Guest
 
Posts: n/a
#3: Feb 23 '07

re: JavaScript code minimizer (not obfuscator!)


Hi,

Matt Kruse wrote:
Quote:
Laurent Bugnion [MVP] wrote:
Quote:
>JsMin is a code minimizer for JavaScript. It will remove all
>comments, empty lines, turn tabs into single spaces, etc... The goal
>is to reduce the size of JavaScript files to the minimum necessary,
>without modifying the functionality.
>
Is there any benefit to JsMin over Packer?
I admit, I've not compared the two, but I use Packer.
I don't know. Packer seems to obfuscate too, which we explicitly didn't
want in our project. Besides, I suspect that packer was not around when
we needed a code minimizer. I knew Douglas' JsMin already at that time,
so that's what we used.

I didn't compare either.

Greetings,
Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Closed Thread