UNPKG
http-teapot-comment
Version:
latest (0.1.0)
0.1.0
A comment system for your website
github.com/http-teapot/comment
http-teapot/comment
http-teapot-comment
/
app
/
service
/
test.js
15 lines
(13 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 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;