Is anyone using node.js with an OAuth2.0 authentication system? [closed] - node.js

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there an OAuth2.0 library for Node.js, which is being used (or planned to be used) in a live, production system?

node-oauth is generally a good bet.

node-oauth provides some support for Oauth2.
"Also provides rudimentary OAuth2 support, tested against facebook connect and github. For more complete usage examples please take a look at connect-auth (http://github.com/ciaranj/connect-auth)" taken from https://github.com/ciaranj/node-oauth

Related

Good user/group management in node.js [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Need to implement user/group management in node.js. Any good frameworks out there? Looked a little into passport.js, which seems to have authentication down down. Just not sure user/group stuff is built in. I can build my own users/groups and do auth with passport.js. Just wondering if there is something out there that I don't know about. Thanks!

What is a good example of stripe payments built on top of node.js? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am trying to find a good example of stripe payments integrated into node.js server. Stripe documentation has good examples of php, python, and ruby and there are great example full function apps in these languages, but not much in Javascript and integrating with the node-stripe npm module. I found this well visited example really helpful.
Anyone find or would like to share any other examples of node.js implementation of stripe payments?

Learning NodeJS [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Really need a book recommendation for mastering node.js.
From this list...or ?
http://www.chapters.indigo.ca/home/search/?keywords=nodejs&pageSize=12
I personally like http://www.nodebeginner.org/ as a foundation.
PeepCode Full Stack Node.js screencast https://peepcode.com/products/full-stack-nodejs-i helps to understand aspects of practical use.
Also Google for deploying Node.js applications to production as it is not as straightforward as with more traditional server side technologies on web and it can make an impact on your application strategy.

Node.JS oauth2 module for paypal authentication [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there any node.js module that I can use for paypal oauth authentication?
None of the Node.js auth solutions support PayPal currently, as far as I'm aware of. I'm the author of Passport, and implementing a PayPal auth strategy is on my to-do list. If you want to get started before I get around to it, let me know and I'll help out.
I don't know of any modules specific to PayPal, but if you end up deciding to roll your own, since you're using Express/Connect I would recommend looking into using EveryAuth and just adding a PayPal module to it: https://github.com/bnoguchi/everyauth -- that'll make integrating with any additional authentication APIs much easier in your app's future.

Writing secure code: a practitioner's approach? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm looking for a good book on writing secure code, with an emphasis on mobile applications. A practitioner's approach would be better than a academic discussion of the theory/algorithms/etc.
What would you recommend?
'Writing Secure Code' by Microsoft is okay - if a tad Microsoft specific, and you could have a look at 'Developing Secure Mobile Applications for Android' by ISEC
See also Are there any coding guidelines for the Android platform that focus on security? and Android API/development security pitfalls, which are nominally focused on Android -- but actually raise issues that are relevant to every mobile application platform.

Resources