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.
- Host: GitHub
- URL: https://github.com/bruth/backbone-common
- Owner: bruth
- Created: 2011-08-15T13:20:04.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2012-03-20T13:17:08.000Z (over 14 years ago)
- Last Synced: 2025-03-17T11:55:01.856Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 148 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.