SS-Backbone is a drop-in Backbone library for your SocketStream apps meant for realtime syncing of model data. It is still in the early days, but the goal is to make writing realtime SocketStream Backbone apps a joy by removing a lot of boilerplate setup. Any models you want to sync through a socket will inherit from a syncedModel class, and should be housed by a syncedCollection class (instructions below). All models using these prototypes will fire CRUD events at the server, and will listen for CRUD events from the server, thus keeping all connected clients up to date with the most recent state of the data.
"ss-backbone" : "0.0.3"
ss.responders.add(require('ss-backbone'));
Or:
Pass optional config options:
ss_backbone_opts = {
models: {
file_type: "coffee", // default is js
folder: "backbone_models" // with this option will look in the server/backbone_models folder
// default is server/models
}
}
ss.responders.add(require('ss-backbone'), ss_backbone_opts);
This provides special Model/Collection classes (see below), wires models/collections up to the server through SocketStream's socket connection, and also sends the latest Backbone (0.9.2) and Underscore (1.3.3) production files to the client.
Your realtime, synced models inherit from syncedModel and declare modelname on the class:
myModel = syncedModel.extend( {}, {modelname: "myModel"} );
Realtime, synced collections inherit from syncedCollection and also declare modelname (for now):
myCollection = syncedCollection.extend( {model: myModel}, {modelname: "myModel"} )
This is where you decide what to do when CRUD events come in.
I suggest that you read the Todo example server for example server logic. Models/Collections are listening for specific events, but these protocols are not yet documented. (coming soon!) See the ss-backbone models/collections code for even more detail of how this works.
PS: This is where I'll be focusing on providing some conventions/tools to save developers time and give them more power out of the box.
module.exports = (req, res, ss) ->
# Use middleware!
# Preload session data in to req.session
req.use('session')
create: (model) ->
#do things
update: (model) ->
#do things
read: (model) ->
#do things
# For collections requesting all models at once
readAll: (model) ->
#do things
delete: (model) ->
#do things