Moved old server file to own folder

This commit is contained in:
2017-01-30 22:55:19 +01:00
parent e1fb7759c8
commit f984cbc1f3

6
v0.1/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.70");
console.log('Server running at http://10.0.0.70:8124/');