diff --git a/index.js b/index.js new file mode 100644 index 0000000..910c368 --- /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: deploy-test-eeap8'); +}); +server.listen(3000, () => console.log('Server running on port 3000'));