There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
Just a little thing on the last statement in step 5 don’t forget to add a semi colon because even though the example code doesn’t have one you will get an error thrown for not adding one in/wonder what you did wrong otherwise.
Ok, so I’m working on the password authentication here and I can’t get past step one without having to input the entire code listed in the solution. Step one just wants me import my local strategy, and when I try to find the solution, the entire code for the whole project is shown. It seems like it won’t let me past without inputing the entire code solution. Pic for help
Out of curiosity, why do we use the inequality operator instead of strict inequality when checking the password? Codecademy requires the former to move to the next step, specifically: if (user.password != password)
It would be good to know how the db.users.findByUsername works. Does it mean the “findByUsername” method has to be written in a way that accepts that callback function as a second argument? It’s a bit annoying, because after completing the lesson I’d like to be able to test myself by setting up an express app locally on my device, but there are some missing pieces that you can’t do it without.