1

Updating server

This commit is contained in:
Alex Yatskov 2014-07-11 20:11:51 +09:00
parent 2475f57795
commit f55c56bf40

View File

@ -1,16 +1,10 @@
#!/usr/bin/env nodejs #!/usr/bin/env nodejs
// Load the http module to create an http server. var express = require('express');
var http = require('http'); var app = express();
// Configure our HTTP server to respond with Hello World to all requests. app.get('/', function(req, res){
var server = http.createServer(function (request, response) { res.send('hello world');
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
}); });
// Listen on port 8000, IP defaults to 127.0.0.1 app.listen(3000);
server.listen(8000);
// Put a friendly message on the terminal
console.log("Server running at http://127.0.0.1:8000/");