Can anyone give a good comparison between:
https://github.com/ciaranj/connect-auth
and https://github.com/bnoguchi/everyauth
Can anyone give a good comparison between: https://github.com/ciaranj/connect-auth and https://github.com/bnoguchi/everyauth Which seem to be
Share
Both libraries are pretty close in feature sets, especially in terms of supported providers.
connect-authprovides support out-of-the-box to make your own oAuth providers, so that could well help you out if you’re going to need that sort of thing.The main thing I’ve noted between the two is that I find
connect-authmuch cleaner with the way it creates and accepts the middleware; you only have to look at the amount of pre-configuration required for the middleware ineveryauthto see that it’s going to get messy.Another thing that isn’t clear is whether
everyauthsupports multiple providers at the same time; withconnect-auth, it seems possible/more straightforward, though I’ve yet to try this myself.