Javascript App Skeleton for use with Brunch
Main languages are JavaScript, Stylus for CSS pre-processing and Handlebars for templating. Also included is Backbone.Mediator for implementing Pub/Sub patterns.
Run brunch new <app> -s https://github.com/damassi/Javascript-App-Skeleton & brunch build. To continually watch for changes, use brunch watch.
See more info on the official site
config.coffee
README.md
/app/
/assets/
index.html
images/
styles/
helpers/
config/
events/
utils/
routers/
models/
/views/
templates/
Application.js
initialize.js
/test/
/vendor/
scripts/
backbone.js
jquery.js
console-helper.js
underscore.js
styles/
normalize.css
helpers.css
config.coffeecontains configuration of your app. You can set plugins / languages that would be used here.app/assetscontains images / static files. Contents of the directory would be copied tobuild/without change. Otherapp/directories could contain files that would be compiled. Languages, that compile to JS (coffeescript, roy etc.) or js files and located in app are automatically wrapped in module closure so they can be loaded byrequire('module/location').app/models&app/viewscontain base classes your app should inherit from.test/contains feature & unit tests.vendor/contains all third-party code. The code wouldn’t be wrapped in modules, it would be loaded instantly instead.
This all will generate public/ (by default) directory when brunch build or brunch watch is executed.
Versions of software the skeleton uses:
- jQuery 1.7.2
- Backbone 0.9.1
- Underscore 1.3.3
- HTML5Boilerplate 3.0.3
The license is public domain. Use it however you want.