Skip to content

Commit

Permalink
Updating app html
Browse files Browse the repository at this point in the history
  • Loading branch information
cacois committed Nov 12, 2012
1 parent 748b9a5 commit 665ba09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/app.js
@@ -1,8 +1,8 @@
var http = require('http');

server = http.createServer(function(req, res){
res.writeHead(200, {"Content-Type": "text/plain"});
res.write("Hello, Showclix!");
res.writeHead(200, {"Content-Type": "text/html"});
res.write("<html><body><h1>Hello, World!</h1></body></html>");
res.end();
}).listen(3000);

0 comments on commit 665ba09

Please sign in to comment.