up vote 4 down vote favorite
1
share [g+] share [fb]

I'm trying to enter a javascript competition where the script has to be <= 1kb in size. Minifying and eval is allowed, so I've run it through google's closure compiler (which does slightly better than any others I've tried).

But I've found that if I convert the script to a string, and replace long words like 'function' and 'return' with single chars, I can reduce that even further. Then, by embedding the string in my script, performing the substitution to restore it, and then 'evaling' it, I can get the original behaviour.

So I was wondering if I could generalise this last method. Has anyone seen or written code to compress/decompress strings in this way? Feel like thinking about it?

EDIT To make myslelf clear, I'm asking about compressing and decompressing strings in javascript - not minifying. E.g. how to find the most common patterns in a string, and how to write a tiny decompressor in javascript for strings where these occurences have been replaced with single chars.

Thanks.

link|improve this question

1  
Erm... maybe Dean Edward's /packer/? – Yi Jiang Aug 15 '10 at 4:01
1  
compressorrater.thruhere.net - a helpful tool for comparing output from different minifiers or compression methods – CD Sanchez Aug 15 '10 at 4:10
None of the minifiers I've tried work as well as Google's (including packer), which I'm already using. The question is about compressing/decompressing strings - it just happens that my string is minified js. – sje397 Aug 16 '10 at 2:29
1  
maybe you've already read these, but here are two recent articles from A List Apart on how to write code that minifiers can compress more easily: alistapart.com/articles/better-javascript-minification alistapart.com/articles/javascript-minification-part-II – Jenni Aug 18 '10 at 13:37
@Jenni - cheers, I will read that. I actually got my script down to an acceptable size. But I'm still interested in this idea of compressing/decompressing inside the script. – sje397 Aug 18 '10 at 13:54
feedback

3 Answers

up vote 2 down vote accepted

Do you happen to be looking for http://www.iteral.com/jscrush/ ? I found it useful for the same competition (I assume it is js1k).

link|improve this answer
Nope. That's another minifier. I'm looking to compress and decompress strings. – sje397 Aug 21 '10 at 2:58
Apologies. That's exactly the sort of thing I was talking about. – sje397 Aug 21 '10 at 6:50
feedback

Have you considered shortening your code by creating a shortcut for those JavaScript objects and methods that you use a lot in your code:

var d = document; var id = d.getElementById;

And then instead of writing

document.getElementById("foo")

You can write

id("foo");
link|improve this answer
2  
Yep, done that already...but also, the closure compiler does it as part of it's optimisation as well. – sje397 Aug 15 '10 at 5:02
feedback

Tokenisation is the preferred method for compressing scripts as it works with the individual keywords and other names.

link|improve this answer
Most of this is done by the closure compiler - there are very few javascript keywords I'm using (function, return etc) but the closure compiler automatically makes all function names just 1 letter long, etc. – sje397 Aug 15 '10 at 5:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.