http://www.perlmonks.org?node_id=1042733

Doctrin has asked for the wisdom of the Perl Monks concerning the following question:

Hello dear Monks. Is there a module, except of JavaScript::Packer, to minify js files? JavaScript::Packer does not give proper minification for the following js code note: no semicolons at the end
if (!clickedElement) clickedElement=document.all.nodeId.style if (!clickedElement) return 1 if (clickedElement.display == dspl){
transforming it to
if(!clickedElement)clickedElement=document.all.nodeId.style if(!clicke +dElement)return 1 if(clickedElement.display == dspl){...
which is wrong. Is there other modules? Thanks in advance.

Replies are listed 'Best First'.
Re: Real good Perl module for minify JS files
by jeffa (Bishop) on Jul 05, 2013 at 16:37 UTC
      Thanks. Compression is not so good, as by Packer, but, resultive code WORKS at least ;)
      i find a free online javascript minifier http://www.online-code.net/minify-js.html to compress your js code, so it will reduce the size of web page.
Re: Real good Perl module for minify JS files
by stonecolddevin (Parson) on Dec 11, 2015 at 19:54 UTC