mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-26 07:51:06 +00:00
12 lines
382 B
JavaScript
12 lines
382 B
JavaScript
|
// Load the http module to create an http server.
|
||
|
var http = require('http');
|
||
|
|
||
|
// 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");
|
||
|
});
|
||
|
|
||
|
// Listen on port 8000, IP defaults to 127.0.0.1
|
||
|
server.listen(8000);
|