Implement a Root Level Request Logger Middleware - Basic Node and Express - Free Code Camp

preview_player
Показать описание

The whole playlist for basic node and express tutorials can be found here:

Рекомендации по теме
Комментарии
Автор

I've learned more from your videos in a month than I learned from the other sources in 2 years.

mindrust
Автор

i followed your instructions and its working and showing the logs but not actually passing the tests on fcc thanks anyway! :D

tdlabs
Автор

OK wow, I finally understood this, Thanks!

sriramjagathisan
Автор

got stuck in this challenge where simply the repl was buggy.
but after having a little glimps of your i tried uploading it on heroku | deploying it
for those who got stuck use these steps
step one clone the repository from git
open the folder and delete the .git folder its hidden so set folder options to show hidden items.
then open the folder in vs code initialize repository using git.
then use these commands in vscode terminal, dont forget to add the dot after git add .
git add .
git commit -m "added a procfile."
heroku login
heroku create
git push heroku master


you need heroku cli installed to complete this process

I passed the test

bilalarain
Автор

Does the position of app.use matter? ie why does it have to be all the way on the top?

vincentdang