It can be challenging to set up a good looking web project whose layout responds well to different screen resolutions and work well in mobile and offline environments.
This project template sets up a repsonsive webapp that uses Twitter Bootstrap along with AppCache and network events.
This makes it easy to set up web apps that are mobile-ready and can be used as Mozilla Web Apps or Chrome Store Apps.
Since the goal of the project is to target more modern browsers with AppCache support, older browsers like IE 6-9 are not supported.
Video about the template: https://vimeo.com/36997211
This project uses volo to do the template setup and for generating the builds and AppCache. It is easy to install and use. Just be sure to have Node installed first.
For Linux/Unix/OS X:
> curl https://raw.github.com/volojs/volo/latest/dist/volo > volo
> chmod +x volo
For Windows, see the volo instructions. It is the same basic idea though, fetch the volo file and start using it.
Then:
> volo create myproject volojs/create-responsive-template
> cd myproject
> ../volo appcache
Now you will have a responsive project template set up in the myproject
directory. You can do development using the myproject/www
directory in your
browser, then use the built, AppCache-enabled project in myproject/www-built
.
volo grabbed this project template from GitHub, then:
- Fetched Twitter Bootstrap code from GitHub
- Fetched jQuery
It generated the responsive CSS files from Bootstrap's LESS files, and then converted the Bootstrap JS code to work as AMD modules.
The project uses RequireJS so that you can create
modular code that is easy to debug. When volo appcache
is run, it builds all
the JS into one file and removes the use of RequireJS. Additionally, it
optimizes the CSS files by combining them into one file. Then it generates the
AppCache application manifest.
Do development in the www
directory. Do modifications and shift+reload in the
browser to see changes. If you need some script dependencies, you can fetch them
with volo add
. To get the modular versions of Underscore and
Backbone, run these commands in the myproject
directory:
volo add amdjs/underscore
volo add amdjs/backbone
This web project has the following setup:
- www/ - the web assets for the project
- index.html - the entry point into the app.
- js/ - the directory to hold scripts.
- app.js - the top-level app script used by index.html. It loads all other scripts.
- app/ - create this directory to store your app-specific scripts. Any third party scripts should go in the js/ directory, as siblings to app.js.
- tools/ - the build tools to optimize the project. Also contains the LESS files used by Twitter Bootstrap to create its CSS.
By default, the package comes with the .css files already generated from Bootstrap's .less files. If you edit the tools/less files again, you can regenerate the CSS files by running the following command from this directory:
> volo less
To optimize the project for deployment, run:
> volo build
This will create an optimized version of the project in a www-built directory. The js/app.js file will be optimized to include all of its dependencies.
If you want an AppCache manifest created and the index.html modified to reference the manifest, run:
> volo appcache
This will run the build command, then generate the manifest from the files in
www-built
, create www-built/manifest.appcache
and modify
www-built/index.html
to reference the manifest.
- HTML5 Rocks - Working Off the Grid
- Twitter Bootstrap
- AppCache
- Online detection
- RequireJS API
- RequireJS optimizer
- volo
- Figure out a way to easily create manifests for the Mozilla Web Apps and Chrome Store initiatives.
- Work out an IndexedDB shim layer so that a uniform local data storage mechanism can be used.
- Suggestions from you.
To leave feedback, open an issue in the Issues section.