Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
skuttleman committed Dec 12, 2015
0 parents commit 7e60f98
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "bocha",
"version": "1.0.0",
"description": "food ordering",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": ".git"
},
"author": "zac and ben",
"license": "ISC",
"dependencies": {
"express": "^4.13.3"
}
}
9 changes: 9 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
var express = require('express');
var app = express();

app.listen(8080);
console.log('Server running on port 8080');

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

0 comments on commit 7e60f98

Please sign in to comment.