Initial commit
This commit is contained in:
7
index.js
Normal file
7
index.js
Normal file
@@ -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'));
|
||||
Reference in New Issue
Block a user