Skip to content

Instantly share code, notes, and snippets.

@jeffmarshall
Created July 19, 2011 02:19
Show Gist options
  • Save jeffmarshall/1091177 to your computer and use it in GitHub Desktop.
Save jeffmarshall/1091177 to your computer and use it in GitHub Desktop.
/**
* Module dependencies.
*/
var express = require('express');
var classily = require('./classily').classily;
var app = module.exports = express.createServer();
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
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.render('index', {
title: 'Classy URLs'
});
});
app.post('/', function(req, res){
classily.emit('shorten', req.body.Long);
classily.on('shortened', function(response){
res.send(JSON.stringify(response));
});
});
// Only listen on $ node app.js
if (!module.parent) {
app.listen(3000);
console.log("Express server listening on port %d", app.address().port);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment