jack-socket-io
v1.0.2
Published
Jack-Stack Plugin for auto-loading socket.io files
Downloads
2
Maintainers
Readme
jack-socket-io
This Jack-Stack Plugin that auto-loads your socket-io connections.
Config
jack.add(require('jack-socket-io').configure({
dirnames: [ 'path1', 'path2', ]
}));
By default, the sockets
event gets handled before jack-stack stack-end
.
If you would like to move this elsewhere, you may set a config.useBefore
or config.useAfter
the string eventname that you want to neighbor.
jack.add(require('jack-socket-io').configure({
dirnames: [],
useBefore: 'router',
}))
This plugin by default uses debug
for logging. If you would like to use your own logger, simply replace the
config.logger
with one that you prefer. The format socket.io is expecting
is:
require('olympus-sockets')({
dirnames: [],
logger: {
sockets: {
debug: someLoggingFunction,
info: someLoggingFunction,
error: someLoggingFunction,
warn: someLoggingFunction,
}
}
});
Assumptions
This plugin assumes that in the directories you're providing, you have files that each export a single function that accepts an instance of socket.io:
module.exports = function(io) {
var room = io.of('something');
room.on('connection', ...
...
}