Skip to content

Commit a8fe1a1

Browse files
committed
Initial commit via cloudnode-cli
0 parents  commit a8fe1a1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.cloudnode.appconfig

server.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
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

Comments
 (0)