@ -15,5 +15,8 @@
"bugs": {
"url": "https://github.com/mahuntington/herokutest/issues"
},
"homepage": "https://github.com/mahuntington/herokutest#readme"
"homepage": "https://github.com/mahuntington/herokutest#readme",
"dependencies": {
"express": "^4.14.0"
}
@ -0,0 +1,10 @@
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('works');
})
app.listen(3000, function(){
console.log('listening on port ' + process.env.PORT);