basic server started

master
Matt Huntington 10 years ago
parent cff00e2567
commit 009fa6d15f

@ -0,0 +1,11 @@
var express = require('express');
var app = express();
var PORT = process.env.PORT || 3000;
app.get('/', function(req, res){
res.send('hello world');
});
app.listen(PORT, function(){
console.log('listening on port ' + PORT);
});
Loading…
Cancel
Save