Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created August 22, 2014 22:12
Show Gist options
  • Save bran921007/ff4ba8b1554d8f4d7985 to your computer and use it in GitHub Desktop.
Save bran921007/ff4ba8b1554d8f4d7985 to your computer and use it in GitHub Desktop.
app.js
var express = require("express");
var app = express();
app.use(express.bodyParser());
require('./routes/')(app);
app.set('view engine', 'ejs');
app.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment