Node.js Blog App REST API with MongoDB

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


Join Lama Dev groups

0:00 Introduction
1:15 Installation
3:46 How to Create an Express Server?
01:04:55 GET and POST Category
01:14:45 Outro
Рекомендации по теме
Комментарии
Автор

Love the way the complete MERN tutorial is broken down into different parts and the explanation is awesome. Pure gold.

jaggyjut
Автор

I have seen may big youtubers explaining same thing but I bet no one can explain better than you, this course helps beginner to understand very easily .

Thanks lama
love from India

turing_machine
Автор

This is so underrated! I've learned more here than during a 6 week long backend (MERN) course in school. Thank you so much!

oablom
Автор

i don't know why your voice your explain style made me addicted to you. I don't understand other channels...

elif-gazioglu
Автор

Lama Dev is such a hardcore professional. You can just feel the mastery when you follow his code. Awesome work!

MrBorndd
Автор

Better than what we learn at our university

rebaadhikary
Автор

Just amazing, the way you make beginners blend in is just amazing. Thanks for this great tutorial.

saheerahmed
Автор

33:12 if you are stuck there .. this code will help
router.post('/login', async (req, res) =>{
try {
const user = await User.findOne({username: req.body.username});
//The code changes here for the if statement .. mine didnt worked with the code shown in the video

if(!user)
{
return res.status(400).json("wrong credentials")
}

const validated = await bcrypt.compare(req.body.password, user.password);
if(!validated)
{
return res.status(400).json("wrong credentials");
}

res.status(200).json(user);

} catch(err){
res.status(500).json(err);
}
});

shayanalibakhsh
Автор

Explanations is very clear! not fast, not slow ! amazing job Kardeş! looking forward for new MERN stack challanges! amazing!

reactify
Автор

i just completed the lamma UI .I called it Camerchat and customised it a little bit.you would make me a developer.i always had a hard time understanding how to hook up front and backend.you not only do it but explain perfectly with massive projects.keep going sir.This is a No nonsense channel.

marvinnewton
Автор

You're the best teacher I've seen on youtube.

starkst-zr
Автор

If you are beginner... Start with this vedio... Awsm

mehakjan
Автор

Yeah, finally complete this part. Thanks a lot, Lama 先生(sensei). Some parts were a bit difficult and as of April 2023, some parts of the code didn't work properly. So if anyone gets stuck, can see the other comments for solving. Hope can complete the last part of the series properly.

md.saydurrahman
Автор

This is probably the 4th tutorial of yours i've followed and they are all clear, helpful and descriptive. Thanks again Safak!

bronzebond
Автор

Finished part 1 and going to start with this! Thank you so much for awesome tutorial. This gives me self satisfaction of learning something new. Looking forward to learn more with lama

ms_s
Автор

Thanks for the awesome series, Lama. Your calm style of teaching is absolutely perfect !!!
I'm currently working through your MERN-social-media project where you built the REST API first and then the UI. Nice to see different kinds of workflow...

Also: Are there any plans for JWT authentication/authorization?
Looking forward to many more awesome projects

mercutio
Автор

Loved the explanation, waiting for the final part connecting frontend with backend

TechTravelsFinance
Автор

this channel is so underarted. this deserves more subscribers.
please make jwt alos. thank you.

utsavkhadka
Автор

Thanks for such a great demonstration . We were stucked in our project, your series resolved everything. Love from India 🇮🇳

ashutoshrokade
Автор

Love these. You are like the Bob Ross of code tutorials.

zfolkz