From 8c35cca0d89cc6be859c66245b464e9eb25e4a1a Mon Sep 17 00:00:00 2001 From: cristiano Date: Thu, 4 Dec 2025 18:39:24 +0000 Subject: [PATCH] Initial commit --- index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..10d48a7 --- /dev/null +++ b/index.js @@ -0,0 +1,7 @@ + +const http = require('http'); +const server = http.createServer((req, res) => { + res.writeHead(200, { 'Content-Type': 'text/plain' }); + res.end('Hello from Hooc Infra! Project: testproject1764873562838'); +}); +server.listen(3000, () => console.log('Server running on port 3000'));