Updating server
This commit is contained in:
parent
2475f57795
commit
f55c56bf40
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user