51

I've made simple nodejs application by using nodejs+express. Now I want to make user authentification. I want to realize session handling by using mongoose. Can you advise some example?

Jonas
  • 121,568
  • 97
  • 310
  • 388
Erik
  • 14,060
  • 49
  • 132
  • 218

3 Answers3

48

Some useful links:

how to implement login auth in node.js

creating registration and login form in node.js and mongodb

Also session management isn't done by Mongoose, but by connect-mongodb or connect-redis. You can checkout an example on how to do user auth and session management in a real application here:

https://github.com/alexyoung/nodepad/blob/master/app.js

Further explanations for that app you can find here: http://dailyjs.com/tag/lmawa or http://dailyjs.com/2010/12/06/node-tutorial-5/

Community
  • 1
  • 1
alessioalex
  • 62,577
  • 16
  • 155
  • 122
14

Just use mongoose-auth by Brian Noguchi https://github.com/bnoguchi/mongoose-auth

It's a drop in solution for your question, it's well documented and extensible.

EDIT

mongoose-auth is no longer maintained. If you need to make it work with more recent versions of mongoose (ie > v3.x.x) and express (ie. > v3.x.x), here's an excerpt from a package.json file I'm currently using in production (It's hacky but it works):

"everyauth": "https://github.com/bnoguchi/everyauth/tarball/express3",
"mongoose-3x-types": "~1.0.5",
"mongoose-auth": "https://github.com/cbou/mongoose-auth/tarball/everymodule-fix",

I you are starting a new project don't use mongoose-auth, instead try out passport. It offers the same functionality, it's very flexible, however it has a different api. It's part of the locomotive MVC framework and as such it's actively maintained.

alexandru.topliceanu
  • 2,364
  • 2
  • 27
  • 38
5

I've posted a complete example of a complete auth system using mongoose + expressjs on here, in case you want to take a look:

Simple login page in nodejs using express and passport with mongodb

Community
  • 1
  • 1
David Oliveros
  • 661
  • 8
  • 12