admin管理员组

文章数量:1421210

I have a great deal of javascript that needs to be min'd before being served to the end user. Currently, I'm using JSMIN, but I'd like to switch to something a bit more powerful (such as something with local variable replacement). I'm currently looking at YUI min developed by yahoo, and it got me thinking about the min tool that jquery uses. Does anyone know what it is and if it's publicly available? Also, any remendations on other min tools that might be better suited than YUI min? If possible, I'd like a java solution so I can just plug the library into what I've already created for the JSMIN solution.

Thanks

I have a great deal of javascript that needs to be min'd before being served to the end user. Currently, I'm using JSMIN, but I'd like to switch to something a bit more powerful (such as something with local variable replacement). I'm currently looking at YUI min developed by yahoo, and it got me thinking about the min tool that jquery uses. Does anyone know what it is and if it's publicly available? Also, any remendations on other min tools that might be better suited than YUI min? If possible, I'd like a java solution so I can just plug the library into what I've already created for the JSMIN solution.

Thanks

Share Improve this question asked May 18, 2010 at 15:05 JDSJDS 1,3594 gold badges17 silver badges29 bronze badges 3
  • EDIT: I took a closer look at the frequently asked questions on the jquery website, and it looks like they use the YUI Compressor. Still, any other suggestions are wele - I want to get this right. – JDS Commented May 18, 2010 at 15:08
  • You should post that as an answer to your question so you can accept it. – Josh Commented May 18, 2010 at 15:16
  • Seems that they now remend YUI, but they utilize(d) JSMIN. dev.jquery./browser/trunk/jquery/build/js/jsmin.js – Scott Commented May 18, 2010 at 15:17
Add a ment  | 

4 Answers 4

Reset to default 4

In jQuery 1.4, Google Closure Compiler is used.

See the FAQ in jQuery.

Since this question was asked/answered, jQuery has switched over to an entirely JavaScript-based build system. Their minification is done using UglifyJS now, which runs in NodeJS.

Here's a nice one that will do CSS as well.

http://jawr.java/

If you look at the build folder in the trunk you can see they've been using YUI since Jan. 09

本文标签: What javascript min tool does jquery useStack Overflow