0.0.2 • Published 7 years ago

@nichoth/utils v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

utils

request.js

Broadcast async events to multiple subscribers

var Request = require('../request')

function asyncCall (data, cb) {
    process.nextTick(function () {
        // echo
        cb(null, data)
    })
}

var req = Request('foo', asyncCall)

// Emit these events -- 'start', the key you passed in (or 'error'),
// and 'resolve'
// Also there is '*', which calls the subscriber with the event name
// and the response
// After the function calls back, all the listeners are removed
req({ myArgs: 'test' })
    .on('start', console.log.bind(console, 'start'))
    .on('foo', console.log.bind(console, 'foo'))
    .on('resolve', console.log.bind(console, 'resolve'))
    .on('error', console.log.bind(console, 'error'))
    .on('*', console.log.bind(console, 'log all events'))

/*
start { op: 'foo', args: { myArgs: 'test' } }
log all events start { op: 'foo', args: { myArgs: 'test' } }
resolve { op: 'foo', args: { myArgs: 'test' } }
log all events resolve { op: 'foo', args: { myArgs: 'test' } }
foo { myArgs: 'test' }
log all events foo { myArgs: 'test' }
*/

// if `myModel` has a key equal to the event name, call it
var myModel = MyModel()
Request('foo', asyncCall)({ myArgs: 'test' })
    .applyTo(myModel)
    .applyTo(myModel.request)

function MyModel () {
    return {
        foo: console.log.bind(console, 'foo'),
        request: {
            start: console.log.bind(console, 'start'),
            resolve: console.log.bind(console, 'resolve')
        }
    }
}
0.0.2

7 years ago

0.0.1

7 years ago

0.0.0

7 years ago