Spaces:
Sleeping
Sleeping
File size: 337 Bytes
cf210b4 fc2e6a1 cf210b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | const http = require('http');
const hostname = '0.0.0.0';
const port = 7860;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello, World!');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
}); |