适用于 Ubuntu 的易于使用的 JavaScript 压缩器是什么?
什么是在 Ubuntu 中运行的易于使用的免费 JavaScript 压缩器?
它也应该很容易安装。 ;-)
What is an easy-to-use free JavaScript minifier running in Ubuntu?
It should be easy to install as well. ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我正在使用 YUI 压缩机
I'm using the YUI Compressor
检查 JSMin:
https://bitbucket.org/dcs/jsmin/
安装它:
用作 CLI :
例如:
作为库:
Check JSMin:
https://bitbucket.org/dcs/jsmin/
Install it with:
Usage as CLI:
For example:
As library:
使用闭包编译器
文档:开始使用
Use Closure Compiler
Documentation: Getting started
我建议使用一些 Javascript 任务运行程序,例如 Grunt 或 Gulp,如果您不想使用任何任务运行程序,只需在 ubuntu 中安装 Node 一旦
安装完成
,只需通过 NPM (节点包管理器)安装一个名为“minifier”的包
上面命令中的g是让这个包在整个系统中全局可用。
安装完成后,您只需运行以下命令即可缩小您的 JavaScript。
有时使用 Google Closure 编译器会产生很多问题,因为它通过检查标准抛出很多编译器错误,但它仍然做得很好,有时我们无法修复 google Closure 显示的那些 ECMA 标准问题。 :)
希望这篇文章可以帮助其他面临类似问题的人。
I recommend using some Javascript task runners such as Grunt or Gulp, if you dont want to use any task runners, just install Node in your ubuntu by
Once the installation is complete
Just install a package called "minifier" via NPM ( node package manager )
g in the above command is to make this package available globally throughout the system .
Once the installation is complete you can just run the below command to minify your javascript.
Some times using Google Closure compiler, creates lot of problem, Since it throws lot of compiler errors by checking against standards,But still it does a great job, sometimes we will not be in a position to fix those ECMA standard issues displayed by google closure. :)
Hope this post helps other folks who are facing similar issue.