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