Skip to content

Commit

Permalink
start this
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcurry committed Jul 23, 2017
0 parents commit 0d22b25
Show file tree
Hide file tree
Showing 266 changed files with 40,165 additions and 0 deletions.
Empty file added README
Empty file.
12 changes: 12 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var express = require('express');
var app = express();

app.use(express.static('public'))

app.get('/', function (req, res) {
res.render('index');
});

app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
1 change: 1 addition & 0 deletions node_modules/.bin/mime

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

212 changes: 212 additions & 0 deletions node_modules/accepts/HISTORY.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions node_modules/accepts/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

135 changes: 135 additions & 0 deletions node_modules/accepts/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0d22b25

Please sign in to comment.