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 a8fe1a1Copy full SHA for a8fe1a1
.gitignore
@@ -0,0 +1 @@
1
+.cloudnode.appconfig
server.js
@@ -0,0 +1,5 @@
+var http = require('http');
2
+http.createServer(function (req, res) {
3
+ res.writeHead(200, {'Content-Type': 'text/plain'});
4
+ res.end('Hello World\nApp (regexplanet) is running..');
5
+}).listen(9173);
0 commit comments