Skip to content

Commit

Permalink
added more goodies
Browse files Browse the repository at this point in the history
  • Loading branch information
braun authored and braun committed May 15, 2014
1 parent a06a21e commit f8e57bd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!doctype html>
<html>
<body>
<script></script>
</body>
</html>
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"author": "",
"license": "BSD-2-Clause",
"dependencies": {
"bower": "~1.2.8"
"bower": "~1.2.8",
"express": "~4.2.0"
}
}
8 changes: 8 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var express = require('express'),
server = express(),
port = process.env.PORT || 30000,
staticRoot = __dirname;

server.use('/', express.static(staticRoot));
server.listen(port);
console.log('http://localhost:'+port);

0 comments on commit f8e57bd

Please sign in to comment.