I've been trying to use Passport / Express / Node.Js combination to handle user authentication, but it proved to be too difficult.
All the tutorials out there use MongoDB (which I don't want to use as I have Neo4J database that I want to use instead) and the examples on Passport's passport-local are not really suitable to me, because I already used a local authentication strategy from Node.Js in Action book - see on my github and I don't understand how to swap it over to the new one.
I can't seem to find any good, easy-to-use, step-by-step introduction for the beginners like me. It doesn't have to be Passport, but it has to be something, which would enable me to login users via a local strategy, as well as Facebook and Google.
It would also be good to know how it could be implemented without disrupting what I already have, so any help with this would be very much appreciated....