Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

am using passport in node.js

in my app.js

var passport = require('passport')

require('./config/passport').boot(passport, config)

in passport.js

var LocalStrategy = require('passport-local').Strategy

run the app and i get this error message

module.js:340
    throw err;

error:Cannot find module 'passport-local'
      at Object.<anonymous> <F:\work\config\passport.js:2:21>

i install the passport in F:\work\node_modules.

even if i put the

 var LocalStrategy = require('passport-local').Strategy

right under the

 var passport = require('passport')

i still get the same error

any idea why?

share|improve this question

1 Answer

Have you installed passport-local module?

npm install passport-local

share|improve this answer
1  
damn!i thought the passport-local is part of passport thanx – chenliang Oct 11 '12 at 4:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.