TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

7 Free Tools to Minify your Scripts and CSS

27 点作者 kadhinn将近 15 年前

8 条评论

buro9将近 15 年前
And they've missed the Google Closure Optimizer for JavaScript: <a href="http://code.google.com/closure/" rel="nofollow">http://code.google.com/closure/</a>
pmjordan将近 15 年前
I'm not sure why YUI Compressor is last on that list, and why it's not mentioned that it also minifies CSS.
评论 #1389039 未加载
mike-cardwell将近 15 年前
I wrote a couple of articles a while ago about minifying css/javascript on the fly. They utilise a mod_perl handler which intercepts outgoing css/js and compresses them on the way out.<p><a href="https://secure.grepular.com/Compressing_CSS_on_the_Fly" rel="nofollow">https://secure.grepular.com/Compressing_CSS_on_the_Fly</a><p><a href="https://secure.grepular.com/Compressing_JavaScript_on_the_Fly" rel="nofollow">https://secure.grepular.com/Compressing_JavaScript_on_the_Fl...</a>
ErrantX将近 15 年前
If anyone uses Kohana I maintain a packaged which wraps the PHP cssmin and jsmin libraries (plus some Kohana juice for serving files/caching)<p><a href="http://hg.errant.me.uk/minify" rel="nofollow">http://hg.errant.me.uk/minify</a><p>There is also a port (or rewrite) for Kohana V3 that someone else maintains <a href="http://github.com/zazu/minify" rel="nofollow">http://github.com/zazu/minify</a>
zalew将近 15 年前
For the Django dudes in here:<p><a href="http://github.com/miracle2k/django-assets" rel="nofollow">http://github.com/miracle2k/django-assets</a> with which you can use your compressor of choice<p><a href="http://elsdoerfer.name/docs/django-assets/" rel="nofollow">http://elsdoerfer.name/docs/django-assets/</a>
statenjason将近 15 年前
Two months ago I hooked up jsmin from a build script for release configurations. It's been helpful to have all of the reader-friendly stuff stripped out automatically without having to store minified copies in source control.
评论 #1389044 未加载
frankosaurus将近 15 年前
For .NET websites, Combres does minifying, compression, and combining of scripts: <a href="http://combres.codeplex.com/" rel="nofollow">http://combres.codeplex.com/</a>
bigstorm将近 15 年前
For Dojo as mentioned on the post comment<p><a href="http://dojotoolkit.org/docs/shrinksafe" rel="nofollow">http://dojotoolkit.org/docs/shrinksafe</a>