UNPKG

sardines

Version:
14 lines (12 loc) 290 B
var growl = require('growl'); exports.pod = function(mediator) { function notify(data) { console.success(data.message); growl.notify(data.message, { title: data.title || 'Sardines', image: __dirname + '/icons/node_info.png' }); } mediator.on({ 'push notify.user': notify }) }