An open API service indexing awesome lists of open source software.

https://github.com/bruth/backbone-common

Various classes which have common utility.
https://github.com/bruth/backbone-common

Last synced: about 1 year ago
JSON representation

Various classes which have common utility.

Awesome Lists containing this project

README

          

Backbone-Common
===============
Backbone-Common is a growing collection of common Backbone subclasses and
utilities useful across projects to work with the AMD module format.

If you have useful subclasses or utilities of your own, please send a pull
request.

A Few Notes
-----------
* All of the modules must be written in CoffeeScript. This is mostly preference,
but also to ensure consistent compiled JavaScript.
* Each module must have a comment block at the top explaining the usage of
the module including explaining any properties or methods that can be overriden
to customize the behavior, if appropriate.
* Modules should encapuslate classes/utilities that have a high chance of being
used together. This includes Model/Collection pairs, View/CollectionView pairs,
etc. See https://github.com/bruth/backbone-common/blob/master/models/polling.coffee
for an example of a model and collection that implements polling functionality.
* Ensure modules are included in their respective top-level file. See #4 for
details.