我在 node.js 中使用护照
在我的 app.js
var passport = require('passport')
require('./config/passport').boot(passport, config)
在护照.js
var LocalStrategy = require('passport-local').Strategy
运行应用程序,我收到此错误消息
module.js:340
throw err;
error:Cannot find module 'passport-local'
at Object.<anonymous> <F:\work\config\passport.js:2:21>
我将护照安装在 F:\work\node_modules 中。
即使我把
var LocalStrategy = require('passport-local').Strategy
就在下面
var passport = require('passport')
我仍然得到同样的错误
知道为什么吗?