A Mono module that will emit an event on the server side that contains the link
object. This event will be listened by a custom script.
"emitter": {
"module": "github/jillix/emitter/dev",
"config": {},
"operations": {
"emit" : {
"roles": [0, 1],
"params": [
{
"eventName": "my event"
}
]
}
}
}
while in the custom script we have:
M.on("my event", function (link) {
link.send(200, "Hello!");
});
- transferred the module to the new jxMono organization
- updated Bind to
v0.4.0
, Events tov0.4.0
- Updated to Bind
v0.3.1
- Updated deps
- Updated Events
- Updated Events and Bind
- Updated to Events v0.1.8
- Added the client script
- Added
Events
andBind
dependencies - Added
config.eventWhenReady
options
- Initial release.