有没有好的 JavaScript 压缩器?

发布于 2024-09-15 13:54:12 字数 1432 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

旧情别恋 2024-09-22 13:54:12

UglifyJS2,由 jQuery 项目使用。

UglifyJS2, used by the jQuery project.

不及他 2024-09-22 13:54:12

活动

已弃用


Google Closure Compiler 通常会生成比 YUI Compressor 更小的文件,特别是如果您使用高级模式,这对我来说看起来很麻烦,但在我使用它的一个项目中效果很好:

几个大项目使用 UglifyJS,自从切换以来我对它印象深刻。

Active

Deprecated


Google Closure Compiler generally achieves smaller files than YUI Compressor, particularly if you use the advanced mode, which looks worryingly meddlesome to me but has worked well on the one project I've used it on:

Several big projects use UglifyJS, and I've been very impressed with it since switching.

御弟哥哥 2024-09-22 13:54:12

JavaScript Minifier 提供了一个很好的 API,您可以通过编程方式使用:

curl -X POST -s --data-urlencode 'input=$(function() { alert("Hello, World!"); });' http://javascript-minifier.com/raw

或者通过上传文件并重定向到新文件:

curl -X POST -s --data-urlencode '[email protected]' http://javascript-minifier.com/raw > ready.min.js

希望有帮助。

JavaScript Minifier gives a good API you can use programatically:

curl -X POST -s --data-urlencode 'input=$(function() { alert("Hello, World!"); });' http://javascript-minifier.com/raw

Or by uploading a file and redirecting to a new file:

curl -X POST -s --data-urlencode '[email protected]' http://javascript-minifier.com/raw > ready.min.js

Hope that helps.

扎心 2024-09-22 13:54:12

如果您使用 PHP,您可能还想看看 minify,它可以缩小和组合JavaScript 文件。集成非常简单,可以通过定义的文件组或简单的查询字符串来完成。缩小的文件也会被缓存以减少服务器负载,您可以通过 minify 添加过期标头。

If you are using PHP you might also want to take a look at minify which can minify and combine JavaScript files. The integration is pretty easy and can be done by defined groups of files or an easy query string. Minified files are also cached to reduce the server load and you can add expire headers through minify.

鸵鸟症 2024-09-22 13:54:12

您可以使用/尝试以下几种:

There are several you can use/try:

浅沫记忆 2024-09-22 13:54:12

这个工具:jscompressor.com 非常不错。

This tool: jscompressor.com is pretty good.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文