When I run the app I get that message. I am trying to follow the instructions described here
This is a portion of my app.js file
var express = require('express');
var RedisStore = require('connect-redis')(express);
var redisStore = new RedisStore(); // setup redis
var flash = require('connect-flash');
var passport = require('passport');
var LocalStrategy = require('passport-local').Strategy;
var routes = require('./routes')
.prototype...
. Double-check all the modules are installed, and then search your code for "prototype" (because likely these other packages aren't having this problem...) - clay