// Import the http module
const http = require('http');

// Create an HTTP server and listen on port 27796
http.createServer((req, res) => {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Welcome to Antares World by Helma.JS\\n');
}).listen(27796, () => {
  console.log('Server running at http://localhost:27796/');
});