A small library that provides methods to listen changes in mongoose models.
npm install mongoose-observer
In order to use this library, you have to create and register a model using mongoose. After that, you can register listeners to create and update events using the following API:
mongooseObserver.register(modelName, event, callback)
Example:
var mongooseObserver = require('mongoose-observer')
mongooseObserver.register('User', 'create', function(createdUser){
// this callback will be executed when a new user is created
// Do something here, for example, send a email to the created user
});
mongooseObserver.register('User', 'update', function(updatedUser){
// this callback will be executed when a User record is updated
// Do something here, for example, emit changes to client via socket.io
});
mongooseObserver.register('User', 'remove', function(removedUser){
// this callback will be executed when a User record is removed
// Do something here, for example, emit changes to client via socket.io
});
npm test
Add unit tests for any new or changed functionality. Lint and test your code.
- 0.1.1 Small changes to README.md
- 0.1.0 Initial release