From 6166edba92ed497794854d8bb84f78c7e60357ac Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sat, 19 Feb 2022 11:25:11 +0000 Subject: [PATCH] Add 'js/http.js' --- js/http.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 js/http.js diff --git a/js/http.js b/js/http.js new file mode 100644 index 0000000..8b96a4a --- /dev/null +++ b/js/http.js @@ -0,0 +1,14 @@ +const http = require('http') + +const hostname = '127.0.0.1' +const port = 3000 + +const server = http.createServer((req, res) => { + res.statusCode = 200 + res.setHeader('Content-Type', 'text/plain') + res.end('Hello World\n') +}) + +server.listen(port, hostname, () => { + console.log(`Server running at http://${hostname}:${port}/`) +}) \ No newline at end of file