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 5784347 commit 40667baCopy full SHA for 40667ba
comments.js
@@ -1,5 +1,8 @@
1
-// create web server Hello World app
+// Create web server Hello World app
2
const http = require('http');
3
const server = http.createServer((req, res) => {
4
res.end('Hello World');
5
});
6
+server.listen(3000, () => {
7
+ console.log('Server is listening on port 3000');
8
+});
0 commit comments