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.
0 parents commit 0da715aCopy full SHA for 0da715a
.gitignore
@@ -0,0 +1,2 @@
1
+/.idea
2
+/node_modules
server.js
@@ -0,0 +1,9 @@
+var http = require('http');
+
3
+function onRequest(request, response) {
4
+ response.writeHead(200, {'Content-Type': 'text/plain'});
5
+ response.write('Hello World');
6
+ response.end();
7
+}
8
9
+http.createServer(onRequest).listen(8000);
0 commit comments