shrinkapp
v1.3.1-l
Published
ShrinkApp is a build utility for HTML5 applications (preferably single page applications). The goal is to produce a production ready HTML5 application with minified css and js files along with the relevant HTML markup changes.
Downloads
6
Readme
ShrinkApp is a build utility for HTML5 applications (preferably single page applications). The goal is to produce a production ready HTML5 application with minified/complied css and js files along with the relevant HTML markup changes.
Features
- [x] Looks for html files and parses them to find script and link tags
- [x] Compiles less files using less compiler (https://github.com/less/less.js)
- [ ] Compiles sass files (http://sass-lang.com/)
- [x] Shrinks css files using yuicompressor (https://github.com/yui/yuicompressor/)
- [x] Shrinks javascript files using UglifyJS (https://github.com/mishoo/UglifyJS2)
- [x] Modifies HTML tags pointing to less/css and/or javascript files to point to the minified ones instead
- [x] Produces a build directory containing the shrunk application
Tested On
- [x] AngularJS's seed application (https://github.com/angular/angular-seed)
- [ ] Bootstrap template from initializr.com
- [ ] Classic template from initializr.com
- [ ] Responsive template from initializr.com
- [ ] Bootstrap template from initializr.com
- [ ] HTML5 Boilerplate template from html5boilerplate.com. Version: 4.2.0
- [ ] Mobile Boilerplate template from html5boilerplate.com/mobile. Version: 4.1
- [ ] Twitter Bootstrap template from getbootstrap.com/2.3.2
Install
First make sure you have installed the latest version of node.js (You may need to restart your computer after this step).
From NPM for use as a command line app:
npm install shrinkapp -g
From NPM for programmatic use:
npm install shrinkapp
From Git:
git clone git://github.com/4mgad/ShrinkApp.git
cd ShrinkApp
npm link .
Usage
shrinkapp [source directory] [options]
The available options are:
-c, --create-app [app-name]
Create a default app.json under the specified source directory.
-f, --force [app-name]
If app.json already exists overwrite it.