Yeoman Generator for creating distributable backbone modules.
- Make sure you have yo installed:
npm install -g yo
- Install the generator:
npm install -g generator-backbone-module
- Run:
yo backbone-module
- Generates a backbone module that can be used with CommonJS, AMD, or as a global browser variable.
- automated jsHint setup
- automated tests with mocha-phantomjs and requirejs
- watch files for changes
- nodemon
- build process with uglify.js
- bower.json
- bowerrc
- pretty much ready to publish to bower.
- skeleton for creating an example of your module.
- Automatic setup for travis ci
- basic readme
- package.json
I've been building a lot of small backbone modules / mixins and releasing them on github and bower. I built this generator so I can quickly break new modules out, test them, build, and deploy. The final result looks a lot like this project backbone-gcl.
Write your module in lib/your-module-name.js
Write your tests in test/test.your-module-name.js
The generated documentation tells people your module is on bower. You can either delete that documentation, or, do the right thing and register your module for bower.
$ bower register your-module-name git://github.com/username/your-module-name.git
After you have done this:
$ mkdir my-module && cd $_
$ yo backbone-module
Yeoman will ask you for your module's name, as well as your name.
When it has finished you can do the following grunt tasks.
$ grunt
sets up a nodemon server that will reload on file changes.
$ grunt build
Will make a copy of your module to the root directory, as well as a your-module-name.min.js
compressed via uglifyjs. You should run $ grunt build
before publishing your module to bower or npm.
$ grunt watch
You should run this task whenever you are developing on your module. It watches the directory for file changes, runs them through JSHint, and will automatically run the tests. Extremely Useful.
Make sure you have started the server with $ grunt
before executing tests.
$ grunt test
or $ npm test
Will do a single test run through a connect server on port 8981. This is the same set of tests that will run during a travis-ci build.
You can create an issue.
You can direct message me on twitter if you have any questions or comments @nackjicholsonn.
I am almost always on freenode IRC when I'm on my computer. Good places to reach me are #sensei
and #pdxnode
Pull requests definitely encouraged.