UNPKG

http-teapot-comment

Version:

A comment system for your website

15 lines (13 loc) 227 B
/** * Test service */ var Test = { /** * Emits a basic hello message back */ hello: function (socket, args) { // Says hello back socket.emit('test/hello', {'name': args.name}); } } module.exports = Test;