Merge branch 'master' of git+ssh://source.hacker.lu/var/repo/projects/syndilights

master
Cyrille Médard de Chardon 2013-09-01 22:56:27 +02:00
commit 4a2921bd08
2 changed files with 12 additions and 0 deletions

6
displayclienthtml/README Normal file
View File

@ -0,0 +1,6 @@
this contains currently standalone html pages showing off how the displayclient looks like
the final setup will be a central server using node.js which gets it's data from the frameserver
and manages the multiple connections to web clients visualizing the virtual building
howto install node js: http://howtonode.org/how-to-install-nodejs

View File

@ -0,0 +1,6 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello Node.js\n');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');