Passport throwing "undefined is not a function" Passport throwing "undefined is not a function" mongoose mongoose

Passport throwing "undefined is not a function"


Change

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

to

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

The passport-local module exports Strategy:

var Strategy = require('./strategy');exports.Strategy = Strategy;