Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any robust authentication libraries for node.js as for rails (devise, sorcery), that could allow to do external authentication (facebook connect, twitter...) as well?

share|improve this question
    
What kinds of external authentification? –  thejh Dec 3 '11 at 18:49
    
Facebook connect, twitter, open id.. –  WHITECOLOR Dec 3 '11 at 18:55

2 Answers 2

up vote 9 down vote accepted

everyauth allows you to set up authentication with a wide range of services.

It basically gives you an API to map facebook or twitter or google authentication objects to your user models and back again.

Some examples of it being used:

share|improve this answer
    
Thank you, i'm already reading about everyauth =) –  WHITECOLOR Dec 3 '11 at 19:36

Passport supports more than 30 authentication strategies.

share|improve this answer
    
Thanks for hint.) –  WHITECOLOR Dec 14 '11 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.