Skip to content

Commit

Permalink
Merge pull request #5 from FajitaNachos/master
Browse files Browse the repository at this point in the history
Fixed deprecated express.createServer() call.
  • Loading branch information
tristen committed Jun 7, 2013
2 parents 6cccdfa + 523a241 commit bdb22c4
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions server.js
@@ -1,9 +1,10 @@
var url = require('url'),
http = require('http'),
https = require('https'),
fs = require('fs'),
app = require('express').createServer(),
qs = require('querystring');
var url = require('url'),
http = require('http'),
https = require('https'),
fs = require('fs'),
qs = require('querystring'),
express = require('express'),
app = express();

// Load config defaults from JSON file.
// Environment variables override defaults.
Expand Down

0 comments on commit bdb22c4

Please sign in to comment.