|
NAMEJavaScript::Minifier::XS - XS based JavaScript minifierSYNOPSISuse JavaScript::Minifier::XS qw(minify); my $js = '...'; my $minified = minify($js); DESCRIPTION"JavaScript::Minifier::XS" is a JavaScript "minifier"; its designed to remove unnecessary whitespace and comments from JavaScript files, which also not breaking the JavaScript."JavaScript::Minifier::XS" is similar in function to "JavaScript::Minifier", but is substantially faster as its written in XS and not just pure Perl. METHODS
HOW IT WORKS"JavaScript::Minifier::XS" minifies the JavaScript by removing unnecessary whitespace from JavaScript documents. Comments (both block and line) are also removed, except when (a) they contain the word "copyright" in them, or (b) they're needed to implement "IE Conditional Compilation".Internally, the minification process is done by taking multiple passes through the JavaScript document: Pass 1: TokenizeFirst, we go through and parse the JavaScript document into a series of tokens internally. The tokenizing process does not check to make sure you've got syntactically valid JavaScript, it just breaks up the text into a stream of tokens suitable for processing by the subsequent stages.Pass 2: CollapseWe then march through the token list and collapse certain tokens down to their smallest possible representation. If they're still included in the final results we only want to include them at their shortest.
Pass 3: PruningWe then go back through the token list and prune and remove unnecessary tokens.
Pass 4: Re-assemblyLastly, we go back through the token list and re-assemble it all back into a single JavaScript string, which is then returned back to the caller.AUTHORGraham TerMarsch (cpan@howlingfrog.com)COPYRIGHTCopyright (C) 2007-, Graham TerMarsch. All Rights Reserved.This is free software; you can redistribute it and/or modify it under the same license as Perl itself. SEE ALSO"JavaScript::Minifier".
Visit the GSP FreeBSD Man Page Interface. |