Minikube Quickstart

This commit is contained in:
Bill Prin
2016-12-12 22:36:19 -08:00
parent f8ab3f70fe
commit 86b76fffba
4 changed files with 317 additions and 0 deletions
@@ -0,0 +1,7 @@
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);