Initial commit via nodester-cli

This commit is contained in:
node 2012-07-03 07:55:59 +00:00
commit 772e017ca2
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.nodester.appconfig

5
package.json Normal file
View file

@ -0,0 +1,5 @@
{
"name":"cloudcmd",
"node":"0.6.17",
"author":"coderaiser"
}

5
server.js Normal file
View file

@ -0,0 +1,5 @@
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\nApp (cloudcmd) is running on Node.JS ' + process.version);
}).listen(process.env['app_port'] || 3000);