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 d8e9bb5 commit bbc7e0cCopy full SHA for bbc7e0c
index.js
@@ -1,11 +1,10 @@
1
2
const
3
- http = require("http"),
4
- os = require("os");
+ http = require("http");
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("Hello World! Machine");
9
});
10
11
const port = process.env.PORT || 1337;
0 commit comments