Hello.js vs Passport.js?

jedd.ahyoung

I've been wondering about this for a little bit and I've done a bit of searching, but found nothing (except for this, which is different). I'm attempting to clarify the differences between Hello.js and Passport.js, and figure out what the use cases are for both.

On the surface, aside from one being client-side and one being node middleware, they seem to deliever similar functionality, and they are both modular.

I've done a bit of poking around with Passport, but haven't tried Hello.js yet.

What are the main differences between the two libraries, and what use cases would prefer one library over the other?

Drew

Hellojs is an alternative to thirdparty SDK's like https://developers.facebook.com/docs/javascript for example, as such its suited to the development of rich client side apps which perform various requests to a thirdparty's api on behalf of the user. Passport.js is designed around federated authentication, identifying a users session through a thirdparty - stackoverflow is a perfect example as it lets me sign in with my google account.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related