Skip to content

Commit bbc7e0c

Browse files
committed
Reverted os changes
1 parent d8e9bb5 commit bbc7e0c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11

22
const
3-
http = require("http"),
4-
os = require("os");
3+
http = require("http");
54

65
const server = http.createServer((request, response) => {
76
response.writeHead(200, {"Content-Type": "text/plain"});
8-
response.end(`Hello World! Machine: ${os.hostname()}, Type: ${os.type()}`);
7+
response.end("Hello World! Machine");
98
});
109

1110
const port = process.env.PORT || 1337;

0 commit comments

Comments
 (0)