0.0.2 • Published 11 years ago
rhapsodyjs-backbone v0.0.2
RhapsodyJS Backbone adapter
Generate BackboneJS models from RhapsodyJS models
$ npm install rhapsodyjs-backboneThe 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