Words are not enough to express my feelings of gratitude towards you. You made me believe in myself when I thought I wasn't good enough. I built my first full-stack project following your tutorials. Now I've finally found a job in tech and it's all because of you. This too is definitely worthy of a watch. Thanks man!
@@HrissW I started learning to code in 2020. I suggest you start using your skills to build something, like a full-stack project with authentication while you still create create time to watch some of those project-based tutorials like this one since it's how you stay up to date with the latest technologies. Also remember to constantly refresh your knowledge of the basics(JavaScript). Good luck.
your teaching style of breaking down difficult things to easier way is great. Your sincere efforts are seen in each and every video Lama. God bless you
I hardly ever comment on tutorials, but DAMN!! Your explanation is beautiful, on-point and so easy to follow and understand. It feels illegal to see this free. Thank you so much for being such a kind human being and sharing these projects, I'm only 30 minutes in and I can already see myself learning so much after finishing it. Thank You.
Hey folks, Lama Dev master is one of those rare developers who genuinely wants to share knowledge and teach people for free. He truly knows his stuff and has a knack for making complex concepts easy to understand. His skills are off the charts, and he's a master at what he does. Really thanks a lot Lama Dev for everything 🌹🌹🌹👏👏👏👏👏👏
Finally finished this project and i can't believe how good it is. The list of things we learned with it is incredible: SWR Next-auth App router bcrypt Mongoose The list goes on and on. Thank you, Mr. Lama.
Have you managed to successfully deploy this online? It works beautifully in dev and even local production mode, but whenever I deploy to Vercel the build fails every single time when building the blog page(s) - even with the production URL hard-coded where we're fetching the blog posts, if you have I'd appreciate any tips you may have, thanks in advance.
@@TerryMitchell Hello I have an issue regarding creating the database at 2:06:0 I don't have a database created in MongoDB if you have some time kindly make clear my doubt
@@TerryMitchell Vercel can only be used for front end Projects. Any project that involves a database cannot be deployed on Vercel Try other hosting platforms like hostinger or GoDaddy although you have to pay a little to host there. I would have referred you to Heroku but the platform is down
Hi, I would like to thank you very much. I bought programming courses, watched several videos, but when your video was recommended to me and I watched it, I was impressed with the level of content offered for free. Your methodology is incredible, the way you create diagrams to facilitate understanding, your oratory... Very impressive. I'm from Brazil, and you're helping me a lot. Thank you.
I'm grateful for this. I've watched a couple tutorials and they weren't beginner friendly, but this one is everything. Just finished it and followed step by step. You're good at this!
1:58:58 you can use this config to work with mongoose 7 version It is a lambda function and just use the given configs. import mongoose from "mongoose"; let isConnected = false; export const connectToDb = async () => { mongoose.set("strictQuery", true);
if (isConnected) { console.log("Already connected to the database."); return; }
Finally! A tutorial that actually shows how to use credentials as a auth provider. Everyone else has credentials auth as their youtube thumbnail then all of a sudden they are scared to show how to use it. Its so simple after watching this!! Thank you
Was pulling my hair out trying to figure out how to update the content without refresh. Ended up holding off on my site just to finish this one. Great Job mate. Thanks
That's it I have found my ultimate Teacher. Thankyou Mr. Lama for such an amazing lesson. This lesson is Price less. I will be watching every video you will make for sure. And I'm confident that I will get my first job soon....
Thank you so much. I decided to find out the next 2 months ago. It's just fate that I came across your video. Everything just fell into place. Thank you for helping novice developers. The best math with a stack of JS, CSS, React, Next, Mongo I haven't seen it!!!
Bro I watched other courses but none of them is intuitive and friendly like your tutorial. I surely consider your way of teaching web dev is much more effective than other tutorials, even paid ones in Udemy. Thanks for all your effort.
First, I want to say a BIG THANKS to lamadev for this course. It has almost everything you need to know as a Next.js developer. I have learnt so much from this. This course is the exact thing I have been looking for on TH-cam since it goes from total basics to advanced features. The biggest plus is that this tutorial uses very popular tech like MongoDB but at the same time doesn't use excess amount of packages. I have seen TH-camrs installing 8 packages for a simple project, while Lavadev goes with the most subtle solution, which is great for beginners. Unfortunately I am a extreme beginner developer and some concepts were a little complicated for me (NextAuth to be specific), but even them lamadev made it simpler by explaining each step of a tutorial. I really hope this channel will grow and lama will continue appearing on my screen more often ❤
@@queenshijain3089 it depend on what you call a "beginner". You definately need basic understanding of javascript and some Next.js basics to do this course. Overall, Lama does a great job explaining all the concepts, so I recommend trying it out, just to see how it goes for you 😉
Came across this video and now I got the basics covered like a Pro. Many online tutorials miss out on so many little topics covered in this tutorial. While watching this video, i just wanted to quickly jump in to my laptop and start coding. Subscribing to you... Keep up the good work!!!
Thank you! Cant thank enough to you. I completed my FYP, building an ecommerce web application by learning through your video and landed an internship. Now I was told to learn next and typescript. Boom! The next day You came up with this master piece. Thank you so much.
hats to you lama dev. I followed some other projects on next js that were overtly complicated but the problem with them is that they just wrote some code and didn't bother to explain it and after weeks of struggling I figured most of the code was copied and pasted.
Hi, I'm watching this tutorial and really loved it when you warned the audience at this moment 29:33 of the video. It shows that you're a decent man and also indicates that you're very familiar with late night owl programmers 😄. I have also watched some of your other tutorials and they helped me a lot. So I wanted to thank you again. YOU ARE A GREAT TEACHER...
I know I have to learn TypeScript by now, but it's something I want to tackle later on. All tutorials on Next.js are linked with TypeScript, making it difficult to learn. When I saw that you skipped TypeScript at the beginning of the tutorials, I felt sooo happy. I just began, but I must say, I am grateful for this. I will give full feedback after I'm done. Thank you in advance.
Had to press the like button before even starting to watch. 😊 I am new and really want to get started with a little database (including images) Thank you SIR (for all your content).
Sir I am searching for next js crash course video but when I get your video notification..this video is totally helpful for me and for my life .... Thank you sir ❤️❤️❤️❤️❤️
this is one of the best explaination video on next js i ever seen on youtube, and the way u are explaining each small things that really awesome man, thanks a lot for that. keep making such frontend tutorials..
thank you safak you accepted our request, i hight appreaciate you for this video i would like next project to use next.js, tailwindcss, frammer motion, redux toolkit and mongo also implement stripe payment.
Bug compilation: mongodb: cannot overwrite the model once defined: solution: add this at the end mongoose.models.User || mongoose.model("User", userSchema); Example: import mongoose from "mongoose"; const { Schema } = mongoose; const userSchema = new Schema( { name: { type: String, unique: true, required: true, }, email: { type: String, unique: true, required: true, }, password: { type: String, required: true }, }, { timestamps: true } ); export default mongoose.models.User || mongoose.model("User", userSchema); 2) hydration problem export default function RootLayout({ children }) { return (
Layout{children} // move layout to be in body tag
); } 3) when creating your google cloud credentials, you will be asked to configure your consent screen. just do external and create, then you can create your credential again
"Great video! Looking forward to more tutorials on Next.js projects, especially ones related to inventory management. Your content is always top-notch!"
I’ve watched only 10 mins and I couldn’t wait to tell you thank you for explaining each steps in the most basic way ever, you even told us the name of the extensions applied Every video I’ve seen is using typescript until I found yours ❤️
Took me about a week to finish this project. It's really a nice tutorial for those who has basic understanding of React( or NextJS itself), HTML, CSS, JavaScript to learn. Thank you lama
Please make a video on hosting a nextjs website with domain and all , like big tech companies host their website and how to add features after hosting , debugging and all . There is no such good videos on yt on that topic
Words are not enough to express my feelings of gratitude towards you. You made me believe in myself when I thought I wasn't good enough. I built my first full-stack project following your tutorials. Now I've finally found a job in tech and it's all because of you. This too is definitely worthy of a watch. Thanks man!
same here man. i'd been following lama dev for so long, and I can never pay him back
@@adimardev1550 I'd definitely recommend him to anyone who wants to take their dev skills to the next level.
@@emanuelameh5722 how long you've been studying? Which resource did you follow to crack coding interviews? I was stuck in tutorial hell for a year now
@@HrissW I started learning to code in 2020. I suggest you start using your skills to build something, like a full-stack project with authentication while you still create create time to watch some of those project-based tutorials like this one since it's how you stay up to date with the latest technologies. Also remember to constantly refresh your knowledge of the basics(JavaScript). Good luck.
is it responsice webstie
Mr. Lama, you are my first teacher♥♥♥
Thank you for everything you do for us♥
I pray to God for success and guidance for you♥
Same
your teaching style of breaking down difficult things to easier way is great. Your sincere efforts are seen in each and every video Lama. God bless you
You have the utmost appreciation and respect
I hardly ever comment on tutorials, but DAMN!! Your explanation is beautiful, on-point and so easy to follow and understand. It feels illegal to see this free. Thank you so much for being such a kind human being and sharing these projects, I'm only 30 minutes in and I can already see myself learning so much after finishing it. Thank You.
Guys he knows what to create and he's already doing it in a very Professional way with accurate sequence, so now focus on NEXT JS please ❤️
Hey folks, Lama Dev master is one of those rare developers who genuinely wants to share knowledge and teach people for free. He truly knows his stuff and has a knack for making complex concepts easy to understand. His skills are off the charts, and he's a master at what he does. Really thanks a lot Lama Dev for everything 🌹🌹🌹👏👏👏👏👏👏
Finally finished this project and i can't believe how good it is.
The list of things we learned with it is incredible:
SWR
Next-auth
App router
bcrypt
Mongoose
The list goes on and on.
Thank you, Mr. Lama.
Have you managed to successfully deploy this online? It works beautifully in dev and even local production mode, but whenever I deploy to Vercel the build fails every single time when building the blog page(s) - even with the production URL hard-coded where we're fetching the blog posts, if you have I'd appreciate any tips you may have, thanks in advance.
@@TerryMitchell Hello I have an issue regarding creating the database at 2:06:0 I don't have a database created in MongoDB if you have some time kindly make clear my doubt
@@TerryMitchell Vercel can only be used for front end Projects. Any project that involves a database cannot be deployed on Vercel
Try other hosting platforms like hostinger or GoDaddy although you have to pay a little to host there. I would have referred you to Heroku but the platform is down
is portfolio part dynamic can we add more projects later on that part?
im getting error when trying to login, im stuck at next auth login the screeen at 2 hour 24 min 22 sec is not appearning for me please help
Better than a Udemy course, words are not enough to this....BETTER TH-cam CHANNEL!!!!!
Hi, I would like to thank you very much. I bought programming courses, watched several videos, but when your video was recommended to me and I watched it, I was impressed with the level of content offered for free. Your methodology is incredible, the way you create diagrams to facilitate understanding, your oratory... Very impressive.
I'm from Brazil, and you're helping me a lot. Thank you.
I'm grateful for this. I've watched a couple tutorials and they weren't beginner friendly, but this one is everything. Just finished it and followed step by step. You're good at this!
1:58:58 you can use this config to work with mongoose 7 version
It is a lambda function and just use the given configs.
import mongoose from "mongoose";
let isConnected = false;
export const connectToDb = async () => {
mongoose.set("strictQuery", true);
if (isConnected) {
console.log("Already connected to the database.");
return;
}
try {
await mongoose.connect(process.env.MONGO_URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
isConnected = true;
console.log("MongoDB connected successfully.");
} catch (error) {
console.error("Error connecting to MongoDB:", error);
isConnected = false;
}
};
Finally! A tutorial that actually shows how to use credentials as a auth provider. Everyone else has credentials auth as their youtube thumbnail then all of a sudden they are scared to show how to use it. Its so simple after watching this!! Thank you
LameDev you're too way Next lvl 4 me, i can't believe those amazing content, you're really a true hero for us! thanks a lot !!!!!!
Was pulling my hair out trying to figure out how to update the content without refresh. Ended up holding off on my site just to finish this one. Great Job mate. Thanks
That's it I have found my ultimate Teacher. Thankyou Mr. Lama for such an amazing lesson. This lesson is Price less. I will be watching every video you will make for sure. And I'm confident that I will get my first job soon....
Thank you so much. I decided to find out the next 2 months ago. It's just fate that I came across your video. Everything just fell into place. Thank you for helping novice developers. The best math with a stack of JS, CSS, React, Next, Mongo I haven't seen it!!!
I rarely comment on videos but I'm doing on this one, I have no words, man. You explained everything very well.
Nothing can describe how I am grateful to your effort for doing my day to day learning struggle easier, thank you Mr. Lama.
The only person in the internet who doesn't brag about tailwindcss. Always loved his work.
Bro I watched other courses but none of them is intuitive and friendly like your tutorial. I surely consider your way of teaching web dev is much more effective than other tutorials, even paid ones in Udemy. Thanks for all your effort.
First, I want to say a BIG THANKS to lamadev for this course. It has almost everything you need to know as a Next.js developer. I have learnt so much from this. This course is the exact thing I have been looking for on TH-cam since it goes from total basics to advanced features.
The biggest plus is that this tutorial uses very popular tech like MongoDB but at the same time doesn't use excess amount of packages. I have seen TH-camrs installing 8 packages for a simple project, while Lavadev goes with the most subtle solution, which is great for beginners.
Unfortunately I am a extreme beginner developer and some concepts were a little complicated for me (NextAuth to be specific), but even them lamadev made it simpler by explaining each step of a tutorial.
I really hope this channel will grow and lama will continue appearing on my screen more often ❤
Is it beginner friendly course
@@queenshijain3089 it depend on what you call a "beginner". You definately need basic understanding of javascript and some Next.js basics to do this course.
Overall, Lama does a great job explaining all the concepts, so I recommend trying it out, just to see how it goes for you 😉
This is the best tutorial to learn NextJS!!! I cannot thank you enough.
This is what I've been waiting for from dear Shafak. You're the chosen one of the world of fullstack development. Keep going. Thanks a lot.
if having issue with [id] ... must add suppressHydrationWarning={true} in in layout.js
Lamadev has been great this year, amazing projects with extensive explanation, cheers 🥂
Came across this video and now I got the basics covered like a Pro. Many online tutorials miss out on so many little topics covered in this tutorial. While watching this video, i just wanted to quickly jump in to my laptop and start coding. Subscribing to you... Keep up the good work!!!
Thank you! Cant thank enough to you. I completed my FYP, building an ecommerce web application by learning through your video and landed an internship. Now I was told to learn next and typescript. Boom! The next day You came up with this master piece. Thank you so much.
hats to you lama dev. I followed some other projects on next js that were overtly complicated but the problem with them is that they just wrote some code and didn't bother to explain it and after weeks of struggling I figured most of the code was copied and pasted.
I have finished the course. It has taken about 16-20 hours. (Some things had to be changed). But I enjoyed it very much. Thanks Lama Dev.
The way you explain end to end is very nice writing from scratch css. I really like your all videos
Bro, I've just downloaded a next js template yesterday and decided to learn next js. What a day! :)
20 minutes into this video and I've already liked.
I can just tell the content is amazing.
I spent 3 hours searching for working examples and API routes syntax in next 13. Thanks a lot. This was very useful
You're the best bro. Need more NextJS especially with tailwind css.
Hi, I'm watching this tutorial and really loved it when you warned the audience at this moment 29:33 of the video. It shows that you're a decent man and also indicates that you're very familiar with late night owl programmers 😄. I have also watched some of your other tutorials and they helped me a lot. So I wanted to thank you again. YOU ARE A GREAT TEACHER...
your css skills combined with backend is unmatched! you are a god
I know I have to learn TypeScript by now, but it's something I want to tackle later on. All tutorials on Next.js are linked with TypeScript, making it difficult to learn. When I saw that you skipped TypeScript at the beginning of the tutorials, I felt sooo happy. I just began, but I must say, I am grateful for this. I will give full feedback after I'm done. Thank you in advance.
I absolutely love your tutorial. It's very down-to-earth and easy to follow.
I was just thinking to take course but you came with this video ❤ thanks
Had to press the like button before even starting to watch. 😊
I am new and really want to get started with a little database (including images)
Thank you SIR (for all your content).
I am also trying to upload image, video on server and fetch it.
this is the best video i've come across in 2023
Sir I am searching for next js crash course video but when I get your video notification..this video is totally helpful for me and for my life ....
Thank you sir ❤️❤️❤️❤️❤️
Would be awesome to see a nextjs with typescript / prisma - mysql :) Congratz for your awesome work @Lama Dev
God bless you my friend 🙏🏾. I feel like this tutorial has been the hardest to find. They are either non existent or out of date. 🎉
He is my teacher, loads of love and support
Love love love. Was looking for this from your side
One of the greatest tutorials i have come across... Thank you so much for giving it out freely!
I experienced an incredible sense of happiness upon receiving the notification for this tutorial. Thank you, Lamadev and God bless you.
great tutorial, thanks so much you are our dad in this domains
Thanks a million for this amazing project. You are one in billion.
As usually, the best tutorial ever.
this is one of the best explaination video on next js i ever seen on youtube, and the way u are explaining each small things that really awesome man, thanks a lot for that. keep making such frontend tutorials..
BEST NEXT JS FULL STACK TUTORIAL!! IVE COME ACROSS
also css helpful
great videos....plz bring more projects
Sir you explained everything and I appreciate you for your hardwork. ❤❤
Awesome as usual. Please make a video on necessary css required for learning reactjs.
Thanks Lama, I am waiting from a long time for a Next js tutorial. Again I thank you for your teaching style which is very impressive.
Just amazing and very clear and concise video. Everything explained well
thank you safak you accepted our request, i hight appreaciate you for this video i would like next project to use next.js, tailwindcss, frammer motion, redux toolkit and mongo also implement stripe payment.
Bug compilation:
mongodb: cannot overwrite the model once defined:
solution: add this at the end mongoose.models.User || mongoose.model("User", userSchema);
Example:
import mongoose from "mongoose";
const { Schema } = mongoose;
const userSchema = new Schema(
{
name: {
type: String,
unique: true,
required: true,
},
email: {
type: String,
unique: true,
required: true,
},
password: { type: String, required: true },
},
{ timestamps: true }
);
export default mongoose.models.User || mongoose.model("User", userSchema);
2) hydration problem
export default function RootLayout({ children }) {
return (
Layout{children} // move layout to be in body tag
);
}
3) when creating your google cloud credentials, you will be asked to configure your consent screen. just do external and create, then you can create your credential again
I am enjoying so much following those steps, kudos for you and more!!!
Thanks Lama Dev. Your tutorial is easy to follow. Also a plus that you provide link to your repo.
You are the best of the bests lama dear dev . Keep going we are waiting for more Next.js projects by you ...
Brother im 30 minutes in and the way you explain stuff is amazing, keep up the good work, subscribed immediately.
Words won't be enough for appreciation of your video. Thank You so so so much. For the knowledge you gave through this video.
"Great video! Looking forward to more tutorials on Next.js projects, especially ones related to inventory management. Your content is always top-notch!"
I'm grateful for this Tutorial. I want learn how to develop social media platform with Nextjs 14
Lama, you are highly loved by me, thank you so much for everything 🙏
yes more next js please, since its seo friendly. Maybe you should make a video where you try ranking your website higher which is made in nextjs.
Brilliant video. I use postgres so need to switch from Mongodb but that will be my project
Thank you very much, I thought learning a new framework would be hard but you help me get through it. Thank you very much.
I’ve watched only 10 mins and I couldn’t wait to tell you thank you for explaining each steps in the most basic way ever, you even told us the name of the extensions applied
Every video I’ve seen is using typescript until I found yours ❤️
You shouldn't be avoiding TypeScript in the first place.
@@Omar_Al_Seddik true !
You explain very cleanly and well, thank you!
This is a wonderful and a powerful video for a beginner. Since I started following your channel, I always make progress. Thank you sir
Bless you Lama!
I must say i completed whole website first time. i am happy about next auth section.
never stop making these
It's Really helpful for beginners, Thank You So Much.🥳🥳
bro, you are a masterpiece, hats off
Took me about a week to finish this project.
It's really a nice tutorial for those who has basic understanding of React( or NextJS itself), HTML, CSS, JavaScript to learn.
Thank you lama
i really enjoy learning stuffs with you. your explaination a more than perfect...Thanks You so much
Thanks safak or Lama always amazing teaching ❤
I do want to see the css, thank you for going through the CSS!!
Just Finish the Project , it wa amazing thanks so much
Awesome video 🎉
This is exactly what I was looking for, tutorial that covers the new app router! Thanks!
Thanku lama dev for such a great tutorials that covers most important topics of nextjs-13. Always fan of yours 💯
Wow....lama been waiting for this for ages...tnks alot d best of d best
Amazing course content. Helped me to learn NextJS. Thank you so much Lama Dev :)
Lama Dev and Javascipt Mastery are my faavourite coding youtube chanells 😃
Brilliant tutorial, I've finally understood something and got the result. Thank you!
Thank you Lamadev. I learned a lot from your videos
that was simple and clear! such a great resource for learning, thank's a lot
May you be blessed man
This is definitely a great project and portfolio worthy
i need more tutorial like this sir, appreciate your effort
Please one tutorial with last version of React
Thanks for everything
Please make a video on hosting a nextjs website with domain and all , like big tech companies host their website and how to add features after hosting , debugging and all . There is no such good videos on yt on that topic
Lama you are an awesome teacher
I like your beginner wise approach. and you have also a very good voice. I will just watch it like a movie 🍿
Thank you so much for this great in-depth tutorial. It's really helped me a lot to have an experience in developing a project in NextJS.