dpd-emitter
Emit events for collection CRUD operations on Deployd
Installation
npm install dpd-emitter --save
Events
Events created
, updated
and deleted
are emitted when models are created,
updated and deleted respectively.
Event Data
The model object operated on is always sent along with the events.
Usage
var socket = ; // Change the url as seen fit // watch new modelssocket; // watch all updated modelssocket; // watch updates on a particular modelsocket; // watch all deleted modelssocket; // watch when a particular model is deletedsocket;