I'm trying to use Everyauth Express Helpers with Express 3.0.0alpha4.
everyauth.helpExpress(app);
But I get the following error:
node.js:201
throw e; // process.nextTick error, or 'error' event on first tick
^
TypeError: Object function app(req, res){ app.handle(req, res); } has no method 'dynamicHelpers'
at Object.helpExpress (/home/amjad/projects/microcommunity/node_modules/everyauth/lib/expressHelper.js:30:7)
at Object.<anonymous> (/home/amjad/projects/microcommunity/app.js:110:11)
at Module._compile (module.js:441:26)
at Object..js (module.js:459:10)
at Module.load (module.js:348:31)
at Function._load (module.js:308:12)
at Array.0 (module.js:479:10)
at EventEmitter._tickCallback (node.js:192:40)
When I switch to an older version of Express (exactly 2.5.9), this error never shows up.
Is the problem really from the new version of Express?
Many thanks in advance for help!
Amjad