17

Looking for a nodejs library that can help make the process of creating user profiles easier for a web application

Pinky
  • 665
  • 2
  • 7
  • 17

1 Answers1

8

Passport is really good for it. More information is available here.

Peeyush
  • 6,144
  • 5
  • 23
  • 37
  • 11
    Passport is only pluggable authentication middleware. It does not offer a user model and validation, recovery, registration, invitations, tracking or automated timeouts. Stay with rails & devise if you can. – ARO Dec 26 '16 at 10:39
  • 7
    Passport is no replacement for Devise – GN. Feb 10 '18 at 03:52
  • 2
    https://github.com/carvalhoviniciusluiz/mongoose-devise – deksden Feb 12 '19 at 17:07