Download the PHP package thesmart/super-pack without Composer
On this page you can find all versions of the php package thesmart/super-pack. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download thesmart/super-pack
More information about thesmart/super-pack
Files in thesmart/super-pack
Package super-pack
Short Description A package management tool that optimizes CSS and JavaScript download times
License MIT
Homepage https://github.com/thesmart/php-SuperPack
Informations about the package super-pack
SuperPack by John Smart (@thesmart)
A package management tool that optimizes CSS and JavaScript download times
Organize your static files into packs (packages). Packs can be developed and debugged while in development mode. Once put into production mode, packs are run through Closure Compiler. This optimizes the payload while preserving script execution order.
TODO List
- Create a cache backed library to compile scripts using Closure Compiler
- Create script to upload files to Amazon S3, Akamai, and other popular CDNs
Example
Start by creating your package managers
// create instances of JS and CSS package managers
global $JS_PACK, $CSS_PACK;
JsPack::setInstance($JS_PACK = new JsPack());
CssPack::setInstance($CSS_PACK = new CssPack());
Then, register your packages. Packages can consist of:
- Relative paths
- Absolute paths
- Plain-text scripts
- Markup
Defining your packages once in index.html. Note that it is best to create separate packages for separate pages in your site
During run-time, you can declare a dependency on a package easily:
You can also inject scripts directly:
Internet Explorer hacks can also be managed with version control:
Everything supported by JsPack is also support for CSS:
Render the scripts into your markup templates:
The output might look like this:
Like this project?
Check out my others. @thesmart