mirror of
https://github.com/arnaucube/raspberryGPIOhtmlserver.git
synced 2026-02-08 04:06:43 +01:00
servidor funciona, gpio desabilitat
This commit is contained in:
19
node_modules/ws/examples/serverstats/server.js
generated
vendored
Executable file
19
node_modules/ws/examples/serverstats/server.js
generated
vendored
Executable file
@@ -0,0 +1,19 @@
|
||||
var WebSocketServer = require('../../').Server
|
||||
, http = require('http')
|
||||
, express = require('express')
|
||||
, app = express.createServer();
|
||||
|
||||
app.use(express.static(__dirname + '/public'));
|
||||
app.listen(8080);
|
||||
|
||||
var wss = new WebSocketServer({server: app});
|
||||
wss.on('connection', function(ws) {
|
||||
var id = setInterval(function() {
|
||||
ws.send(JSON.stringify(process.memoryUsage()), function() { /* ignore errors */ });
|
||||
}, 100);
|
||||
console.log('started client interval');
|
||||
ws.on('close', function() {
|
||||
console.log('stopping client interval');
|
||||
clearInterval(id);
|
||||
})
|
||||
});
|
||||
Reference in New Issue
Block a user