Added simple node server and automatic changes to plex_watching & plexPlaying

This commit is contained in:
2017-01-31 18:00:24 +01:00
parent a3955cdec1
commit ae634ee4f4
3 changed files with 12 additions and 6 deletions

6
server.js Normal file
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 World\n');
}).listen(8124, "10.0.0.41");
console.log('Server running at http://127.0.0.1:8124/');