Skip to content

phnz/Backbone-Stack

 
 

Repository files navigation

Backbone Stack (0.3.4)

A pre-configured Backbone Stack for starting new projects, it alleviates a lot of the common boilerplate code and setup. It uses AMD modules, mocha for TDD and handlebars precompiled templates. Grunt plays a major role in the automated linting, testing and building of your code.

Build Status Dependency Status

View the changelog

Included libraries

  • Grunt - A task runner like Make, used to watch and compile the JS code
  • Require JS - To asynchronously load in all of the scripts and templates
  • Almond - To run the built AMD code in production
  • Backbone JS - for MVC JavaScript
  • jQuery - For DOM manipulation and ajax
  • Handlebars JS - for templating
  • Twitter Bootstrap - For a quick and dirty UI prototype

Libraries for Test Driven Development

  • Mocha - TDD / BDD testing framework for JavaScript
  • Chai.js - Nice assertions
  • Sinon - Spies, Stubs and Mocks

Setup

Installing dependencies

Bower is used as for package management, the default client-side dependencies are listed in the bower.json file.

Note you will need node.js and npm and phantomJS for headless unit tests.

# Install bower package manager
$ npm install -g bower

# Install grunt build tool
$ npm install -g grunt-cli

# Install additional grunt tasks
$ npm install

# Install client-side packages
$ bower install

Installing new dependencies - Bower documentation

# Search for a library
$ bower search [name..]

# Install a library and save it to the bower.json file
$ bower install [name..] --save

Getting started

Running your app

Open up the ./index.html file in your browser to view your app, it will be using pre-compiled templates and build and minified JS.

Testing your code

The unit tests can be opened up in the browser with the test/test-runner.html file, or can be done through grunt on the command line.

The idea behind linting first, then testing and then building is to fail as quickly and early as possible, this will really help to boost productivity.

# Watch src/ and test/ files and lint, test, then build on change (handy for TDD)
$ grunt watch

# Lint and test files
$ grunt test

Note the test suite loads requireJS dynamically and you don't need to build to run the tests, this lets you do TDD with less effort.

Building your code

All of the JavaScript is pre-build using grunt and the r.js optimiser, this means your development environment better simulates what will be served in production. Your built CSS and JS are then version and your index.html file is automatically updated with the versioned filename.

# Watch src/ and test/ files and test, then build on change
$ grunt watch

# Do a one off build - will lint and test your code first
$ grunt build

# Compile the handlebars templates
$ grunt handlebars

# Compile less and css styles
$ grunt styles

git pre-commit hook

Simply run these commands inside your project dir to set a commit hook that will run before each commit. If any of the test or build phase fails the commit will not be accepted.

# Create a pre-commit hook
$ touch .git/hooks/pre-commit
# Make executable
$ chmod +x .git/hooks/pre-commit
# Build on commit
$ echo "grunt test" > .git/hooks/pre-commit

Contributors

  • Pete Hawkins - github.com/phawk
  • Miguel Andrade - github.com/miguelcobain

MIT License

Copyright (C) 2013 Pete Hawkins

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Removing the boilerplate from starting single page apps.

Resources

Stars

Watchers

Forks

Packages

No packages published