We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5980a commit 24fd396Copy full SHA for 24fd396
index.js
@@ -5,10 +5,10 @@ const
5
6
const server = http.createServer((request, response) => {
7
response.writeHead(200, {"Content-Type": "text/plain"});
8
- response.end(`Hello World! Machine: ${os.hostname()}, Type: ${os.type()}`);
+ response.end(`Congresso de TI! Machine: ${os.hostname()}, Type: ${os.type()}`);
9
});
10
11
const port = process.env.PORT || 1337;
12
server.listen(port);
13
14
-console.log("Server running at http://localhost:%d", port);
+console.log("Server running at http://localhost:%d", port);
0 commit comments