0

Possible Duplicate:
Is there a good JavaScript minimizer?

i'm looking for javascript minimizer , not a regular one that get out the namespaces , i talk about something to short my variables names , function names and so on , that can face scoping and match the variables by the scope , what i looking from the minimizer is :

  1. get variable names shorter
  2. get functions names shorter
  3. facing scoping

you can see Jquery mini to know what i mean

is there anything out there that can do that?

Community
  • 1
  • 1
homerun
  • 19,837
  • 15
  • 45
  • 70

3 Answers3

0

http://developer.yahoo.com/yui/compressor/

morgancodes
  • 25,055
  • 38
  • 135
  • 187
0

http://chirpy.codeplex.com/ Chirpy does all sorts of good things to minify your js and css as well as your less files if you use less (which you should def look into if you don't use it).

Keith.Abramo
  • 6,952
  • 2
  • 32
  • 46
0

If you want to minify js online, you can use this http://jscompress.com/

Narendra Yadala
  • 9,554
  • 1
  • 28
  • 43