1.1.2 • Published 9 years ago

palmettoflow-event v1.1.2

Weekly downloads
1
License
ISC
Repository
-
Last release
9 years ago

PalmettoFlow Event

Build Status

This module provides a template to create a palmetto flow event, the event contains the following keys:

NameTypeDescription
tostring
fromstring
subjectstring
verbstring
objectobject
actorobject
dateSubmittedstring (ISODate)
durationinteger (milliseconds)

Usage

This module contains two functions:

response(event, object)

var { response } = require('palmettoflow-event')

ee.on('/microservice', function (event) {
  // do stuff
  ee.emit('send', response(event, data))
})

The response method will generate the following event:

{
  to: '1234',
  from: '/microservice',
  subject: 'microserice-response',
  verb: '....',
  object: {...},
  actor: {...},
  dateSubmitted: ,
  duration: 
}

newEvent(subject, verb, object, actor)

This function will create a new palmetto flow event:

var newEvent  = require('../').newEvent
var testEvent = newEvent('beep', 'boop', { foo: 'bar'})

responseError(event, object)

var responseError  = require('../').newEvent
var re = responseError(event, { data: 'here'})

Why

This is a helper module to reduce boilier plate code in palmetto flow. The palmetto flow event is consistent to enable core subscriptions services to understand all messages for logging, metrics, etc. Sometimes you need to customize the event, but in times that you don't need to customize, you can reduce a lot of typing by using this helper function.

Collaborators

License

MIT

Thank you

  • moment development team
  • uuid development team
  • nodejs development team