Skip to content

Instantly share code, notes, and snippets.

@TheNicholasNick
Created March 18, 2011 05:30
Show Gist options
  • Save TheNicholasNick/875657 to your computer and use it in GitHub Desktop.
Save TheNicholasNick/875657 to your computer and use it in GitHub Desktop.
/**
* Module dependencies.
*/
var express = require("express");
var app = module.exports = express.createServer();
// Configuration
app.configure(function() {
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
});
app.configure("development", function() {
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure("production", function() {
app.use(express.errorHandler());
});
// Routes
app.get("/", function(req, res) {
res.send("index");
});
// How do I put the follow in a different file as if it were physically put here?
// app.get("/external", function(req, res) {
// res.send("external");
// });
require("./external.js")(app);
// Only listen on $ node app.js
if (!module.parent) {
app.listen(3000);
console.log("Express server listening on port %d", app.address().port);
}
module.exports = function(app) {
app.get("/external", function(req, res) {
res.send("external");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment