I don’t understand what everyauth promises are.
I see that I need to return a promise object or user, but what is an everyauth promise?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s useful when you have a function that performs authentication, but which does so asynchronously. You can’t directly return user information from the function (because you have to wait for the callback to fire), so instead you return a promise. This is a special object that acts as a “placeholder” for what will eventually be filled with user information when the asynchronous request does complete.
Example from the documentation:
It means that the calling context can carry on doing work right up until it really needs that user information (and all the while, in the meantime, the asynchronous request is completing); it would have to wait at that later stage if the user information wasn’t yet available. You might think of it as a very specific case of thread creation and joining.
“Promise” is a generic term that covers this sort of functionality in all kinds of languages and contexts: