NAME
Plack::Middleware::JSConcat - Concatenate javascripts
SYNOPSIS
# in app.psgi
use
Plack::Builder;
builder {
enable
"JSConcat"
,
files
=> [<static/js/*.js>],
filter
=>
'/usr/local/bin/jsmin'
;
$app
;
};
# use $env{'psgix.jsconcat.url'} to include javascript.
DESCRIPTION
Plack::Middleware::JSConcat allows you to concatenate multiple javascripts files into one. It provides a content-hashed key as the url for including all the javascript files you specified. You can also provide a filter program to minimize the concatenated file.
CONFIGURATIONS
AUTHOR
Chia-liang Kao <clkao@clkao.org>
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.