UNPKG

261 Btext/coffeescriptView Raw
1logger = require 'torch'
2postal = require('postal')()
3
4application = postal.channel 'application'
5
6application.subscribe "foo", (message, envelope) ->
7 logger {message, envelope}
8
9application2 = postal.channel 'application'
10application2.publish "foo", 'hello'