0.0.2 • Published 10 years ago

rhapsodyjs-backbone v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

RhapsodyJS Backbone adapter

Generate BackboneJS models from RhapsodyJS models

	$ npm install rhapsodyjs-backbone

The generated model uses the UMD pattern, so it will work if you're using globals (with <script>), RequireJS or Browserify/CommonJS.

Globals

The model will be accessible via the variable Model, and the collection will be acessible by the variable ModelCollection, where Model is the name of your model.

RequireJS and Browserify/CommonJS

The module object will be the following two attributes, model and collection.

Let's say that the module object is called Model:

	Model.model; //Gets the model
	Model.collection; //Gets the collection