Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Mar 19, 2012
0 parents commit baad307
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*~
node_modules
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
web: node web.js
7 changes: 7 additions & 0 deletions package.json
@@ -0,0 +1,7 @@
{
"name": "igo-javascript",
"version": "0.0.1",
"dependencies": {
"express": "latest"
},
}
11 changes: 11 additions & 0 deletions web.js
@@ -0,0 +1,11 @@
var express = require('express');

var app = express.createServer();

app.get('/', function(req, res) {
res.send('Hello World');
});

var port = process.env.PORT || 3000;
app.listen(port);
)

0 comments on commit baad307

Please sign in to comment.