Add hello-minikube spanish example

This commit is contained in:
Hector Sam
2020-05-06 21:39:27 +02:00
parent 9f82c32a61
commit 812a9ce9c6
4 changed files with 289 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
var http = require('http');
var handleRequest = function(request, response) {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Hello World!');
};
var www = http.createServer(handleRequest);
www.listen(8080);