Skip to content

Commit

Permalink
Merge pull request #24 from dan-silver/master
Browse files Browse the repository at this point in the history
Updated the example to Express 3
  • Loading branch information
jaredhanson committed Feb 10, 2013
2 parents cb6c35e + 828f409 commit 078d033
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/login/app.js
Expand Up @@ -48,7 +48,7 @@ passport.use(new FacebookStrategy({



var app = express.createServer();
var app = express();

// configure Express
app.configure(function() {
Expand Down
2 changes: 1 addition & 1 deletion examples/login/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "passport-facebook-examples-login",
"version": "0.0.0",
"dependencies": {
"express": ">= 0.0.0",
"express": "3.x",
"ejs": ">= 0.0.0",
"passport": ">= 0.0.0",
"passport-facebook": ">= 0.0.0"
Expand Down

0 comments on commit 078d033

Please sign in to comment.