-
Notifications
You must be signed in to change notification settings - Fork 522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Javascript Minify #55
Comments
Hi, I'm glad you liked it. Cheers PS: I just started contributing to this project. |
I've never really done Javascript minification before, I always find there are too many tools and they all seem to do different things, I have a few links that could help you make a choice though. http://closure-compiler.appspot.com/home <- worth looking into calling their REST API? |
Thanks.
Have any Suggestions? |
I like this concept of compressing all the images, css and javascript. That'll be really handy. For image compression look into http://kraken.io As for the remote directory/ftp sync, it's a good idea but might not be useful for everyone, e.g. I use Git and SVN for my projects but that doesn't mean I'd want any new features instantly being committed to my repository as they are just a work in progress. |
@TisRyno
@oklai Cheers |
Here the compression component. Javascript: Css: Image:
|
@zaygraveyard @oklai |
Just a warning, for compressing JS the closure compiler using advanced optimizations will have a chance to break your script because it will shorten function names to as small as possible. The upside is, if it doesnt break your script -- the optimizations will allow your script to initialize and run faster than all the other compressors. YUI compressor is a bit slower than Uglify. |
Hi @zeltice, you might want to check-out issues #62 where we discuss js minification and imports in js, we currently use UglifyJS2 for concatenation and minification of js. Cheers |
Hi ppl, I'm using Koala since a month and I love it. In paralell I'm learning grunt on node.js and I have a comparison about Koala & Grunt
Do you planning to make image compressor as native compiling option or have a plan for it? Anyway, thanks for this prog! It made my life easier and better :) |
aha, image compression feature in our next development plan. Let us discuss here #220. |
Just started using Koala for my lesscss compilation, really awesome interface and enjoy the options to compress the outputted files. It lead me to the idea of also allowing javascript files to be minified?
It'd be really handy to have a tool that does all your compression in one go!
The text was updated successfully, but these errors were encountered: