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