mirror of
https://github.com/KevinMidboe/fanController.git
synced 2025-10-29 17:40:22 +00:00
Moved old server file to own folder
This commit is contained in:
6
v0.1/server.js
Normal file
6
v0.1/server.js
Normal 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.70");
|
||||
console.log('Server running at http://10.0.0.70:8124/');
|
||||
Reference in New Issue
Block a user