Mongoose plugin to automatically emit needed events.
This modules lets you attach event listeners directly to your models and emit event at any mongoose hook you want in an extremly flexible way.
npm install --save mongoose-trigger
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const MongooseTrigger = require('mongoose-trigger');
let UserSchema = new Schema({
name: String,
email: String,
something: Array
});
const UserEvents = MongooseTrigger(UserSchema, {
events: {
create: {
select: 'email skills',
populate: {
path: 'skills',
select: 'name'
}
},
update: {
populate: 'skills'
},
remove: false
},
partials: [
{
eventName: 'custom_event',
triggers: 'name',
select: 'name email',
populate: 'something' //if it is a reference...
}
],
debug: false
});
UserEvents.on('create', data => console.log('[create] says:', data));
UserEvents.on('update', data => console.log('[update] says:', data));
UserEvents.on('partial:skills', data => console.log('[partial:skills] says:', data));
UserEvents.on('partial:x', data => console.log('[partial:x] says:', data));
UserEvents.on('remove', data => console.log('[remove] says:', data));
Call mongoose-trigger
as a function to initialize.
It takes 2 arguments:
- Schema
- Options
And returns an instance of Node Events which you can attach listeners to.
The following events are supported:
- create
- update
- remove
- partials (you're free to define those and they are prefixed with 'partial')
const Listener = MongooseTrigger(YourSchema, YourOptions);
Listener.on('partial:custom_event', data => console.log('do something...'));
Define what events you want to emit. The following events are available:
- create
- update
- remove
events: {
create: false || true
}
This configuration uses the same syntax as mongoose. Actually it uses mongoose functionallity to make it possible. So you can include exclude single & multiple fields
events: {
create: {
select: 'name email',
populate: 'something'
}
}
events: {
create: {
select: 'name email',
populate: {
path: 'something',
select: 'example'
}
}
}
Partials gives you the power to create custom events with custom triggers and custom data. Very flexible... The settings do also use mongoose built in functionality. So be sure to checkout mongoose documentation.
partials: [
{
eventName: 'custom_eventname',
triggers: 'name email',
select: 'email',
populate: 'something'
}
]
partials: [
{
eventName: 'custom_eventname',
triggers: 'something',
select: 'something name',
populate: {
path: 'something',
select: 'random'
}
}
]
Set this to true if you want to output info about all emitted events.
npm run dev
starts a server at localhost:3000.
The MIT License Copyright (c) Carsten Jacobsen