mirror of
https://github.com/balkian/hookio-sparql-demo.git
synced 2024-11-21 10:52:28 +00:00
29 lines
525 B
JavaScript
Executable File
29 lines
525 B
JavaScript
Executable File
#!/usr/bin/nodejs
|
|
|
|
var Hook = require('hook.io').Hook,
|
|
express = require('express'),
|
|
app = express.createServer(),
|
|
io = require('socket.io').listen(app);
|
|
|
|
app.listen(8008);
|
|
|
|
io.sockets.on('connection', function (socket) {
|
|
socket.emit('news', { hello: 'world' });
|
|
socket.on('my other event', function (data) {
|
|
console.log(data);
|
|
});
|
|
});
|
|
|
|
var monkey = new Hook({
|
|
name: "monkey-hook",
|
|
debug: true
|
|
});
|
|
|
|
|
|
monkey.on('hook::ready', function () {
|
|
console.log('I am online :D');
|
|
});
|
|
|
|
monkey.start(1337);
|
|
|