server for display clients: readme

master
Gunstick 2013-09-01 22:52:39 +02:00
parent e827fdecad
commit 30d8aa4bb0
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/');