BETA version - STILL IN DEVELOPMENT
The multilanguage feature doesn't work yet for example
generator-bat ( Backbone Application Template )
Every got tired of having to bootstrap your new projects over and over again? This Yeoman generator will generate it for you!
Why would you want to use BAT?
When using the BAT generator you can immediatly start developing your application instead of worrying about setting everything up.
It gives you the following things out of the box:
- GruntFile: setup completely including, compass, browserify, yuidoc, uglify, compress etc
- BackboneJS
- HandlebarsJS
- Default project structure
- Support for browserify shims
- Watchify
- Lots more
Installation:
The generator is available in the global NPM:
npm install -g generator-bat
Usage
To use this generator you will need the have the following things installed:
Yeoman:
npm install -g yo
Main generator
To start a new project execute the following in your shell:
yo bat
It will ask you some questions, set everything up, do an npm install and your set to go!
Subgenerators
The generator also comes with sub-generators for Backbone models, collections and views.
When using a subgenerator it will also automatically fill in the Yuidoc documentation partly
using your GIT username, views require there Handlebar template already etc. Basically it saves you
alot of time! So use them wisely!
Views
When a view is generated it will create for you: {{viewName}}.coffee, {{viewName}}.hbs. These will be placed in
the root of the views folder.
Optionally: _{{viewName}}.sass and add it to the _views.sass.
yo bat:view
Models
When a model is generated it will create a {{modelName}}.coffee file in the root of the models folder.
Optionally: make the model a singleton.
yo bat:model
Collections
When a collection is generated it will create a {{collectionName}}.coffee file in the root of the collections folder.
Optionally: make the collection a singleton.
yo bat:collection