i almost practiced 20 hours for 2 tutorial of nextjs and im in the path of mastering it, thanks lama dev. i hope next tutorial come soon and i actually want to learn how to build complete app with high level of security, lama dev thanks for being with me, im gonna build and upload my modern website! love from IRAN
I was so confused abou how next js authentications and API works. I watched many toturial but didnot find any helpful. But after watching this video now i understand Next js and will try to create some dummy projects. Thanks for this awesome toturial😍
I love this kind of tutorial, I am student and new for next.js and I just by watching this video I learn a lot. Although I can't memorize them all , I just watch it over and over hahaha😄. Lama dev, can you make a tutorial or a continuation of this video with file or image upload. Well appreciated works.❤
Lama, if you create a course on Next.js 14 + Headless CMS (preferably the simplest one, without deployment, i.e. not Strapi), let it be a one-page Landing page. For example, this could be Contenful simple and effective, or another but equally simple (although all of them are not relatively simple), but still it would be a very interesting lesson and there are very few of them on the Internet especially for Next.js 14. This is just an idea for future project, if you have the time or inclination to do it, I'd be happy to take a look!
Thank you for this next.js tutorial! Took me a bit longer than I expected (never learnt about next-auth before) but this is so helpful! Great explanation
Well explained, well coded and really interesting project, I am also making a crm like project and was really having trouble doing it. I opened TH-cam and this video popped first. Thanks for this!
in the pagination fetch. Error: MongoServerError: BSON field 'skip' value must be >= 0, actual value '-2' here is an solution. in all fetch that includes the BSON find() and skip(); .skip(-2 + (itemsPerPAge * page) );
Hey there! I really enjoyed watching your video about setting up an admin dashboard. It was super informative! I'm currently working on a project where I need to implement different user roles for the admin dashboard. I noticed you covered the basics of setting up the dashboard, but I was wondering if you could do a follow-up video or provide some guidance on how to add different user roles, like "admin," "moderator," and "viewer." Any tips or suggestions on how to approach this would be greatly appreciated! Thanks in advance!
Hello sir thank you so much for teaching us. just want you to let you that please make tutorials on advance topics of MERN for example, zod with react-form-hook, react-i18 for Multilanguage application, and tutorial on webRtc. please make tutorials on this top. because we have more than enough videos on MERN but these advance topic are having very less tutorials
I followed the entire tutorial, but I still have an error, which unfortunately I can't resolve, when adding the middleware it doesn't redirect. Server Error TypeError: Invalid URL This error happened while generating the page. Any console logs will be displayed in the terminal window. help me :(
Really looking forward to doing this project. Just some feedback... I do wish it was mobile responsive though as people looking at my portfolio will often visit it using a mobile device.
I am @1:13:56 and after I finish this tutorial I am going to use bootstrap in my next training project. Thank you very much Lama Dev for this video tutorial! It's so great!
Hello, compliments of the day to you and thanks for your videos and the hard work you put into them. Can you kindly create a tut that shows how to monitor user inactivity in Nextjs 14 and logout when there hasn't been any user activity (first notifies user via modal warning first - if no response, logs user out after inactivity timeout expiry). Secondly, a tut on how to manage routing based on user role (so protected pages logic)
In the connectToDB function you are trying to cache existing connection if it's not available in a caching object. But the object is inside the function. So everytime we try to connect to db it will be create a new instance of the caching object. So the caching should not be inside the function.
Why should he? Tailwind is the worst cancer I have seen in web dev for ages. Typescript is usefull but slowly looses popularity lately. Probably not used to keep it simple
is it just me, facing error when try to login 3:21:40 , entering correct username and password but the wrong credentials keep appear, and when i reload the page then its redirect me to dashboard instead. tried github code, and still the same
There is a fix on the Github repo on the Pull Requests. All you have to do is in the authenticate function is set the redirect to false and manually redirect outside the try catch block. export const authenticate = async (prevState, formData) => { const { username, password } = Object.fromEntries(formData); try { await signIn('credentials', { username, password, redirect: false }); // add redirect false } catch (err) { return 'Wrong Credentials!'; } redirect('/dashboard'); //manually redirect };
Hello friends, and thank you Lama for your content, something here worries me, until now in the content that I have found they always mentioned that for the content of the components that generate the routes, arrow functions should not be used, but I see that your You always use them, so I don't know what to do there, although I suppose I should go to the documentation hehehehehe. thank you so much.
I have a quick question. I've implemented cookies and JWT authentication in my NestJS backend. Now I'm working on the Next.js frontend, and I have a server component that sends a request to the backend (Nest) to get protected data. However, I'm receiving an "unauthorized" message from the backend in the server component. Note: I'm using HTTPS-only cookies and ngrok for HTTPS in development. How to solve this? means how i can configure next js How i can forwards the secure cookies from Server compoents to the nest js backend that are comming from the browser
Thankyou for the wonderful project. I am a beginner and starting to learn the backend, and I am following along with your tutorial. I would like to ask if I'm going to need Node.js for the backend, or if Nextjs is capable enough to do the fetching of the data and handling of backend logic? Since I've been watching a lot of videos about Next.js, and some of them say that Next.js is a full-stack framework and is only good for client-side web due to its ssr and not good for backend intensive projects. I would like to ask your take here thankyou.
This is a very cool tutorial an d i have been enjoying you tutorials, i learn react completely from this channel and now i'm learn nextjs. KUDUS to Lama Dev. Thanks for the tutorials. i have one confusion here on how to add social media login with role base authorization.
Hi Lama, at 20.21, line number 83 I can't render anything {cat.title}. only when I use "return" i.e. return {cat.title}, it starts to work all of a sudden. Any idea why?
I copied your completed project but my problem is that once the credential is correct it doesn't directly proceed to dashboard instead I need to refresh the page before the dashboard is shown. thanks for your code I'm learning a lot
When / how is the products and users tables being created given the completed file? It seems you are using previous database info to make the user or bypassing the login auth. How do we do this? Does mongoose have no auto schema push like prisma?
Thanks for the tutorial. But my RootLayout is affecting (the header and footer of my app appear in the dashboard page) the DashboardLayout because I put Header and Footer component in my RootLayout. How is the solution?
Thanks for this wonderful tutorial. Please let me know how to return an error like incorrect email or password from auth.js to actions.js because as per your code it is not throwing an actual error to login page.
Do you know why when we run build the system show Fetch Failed some page fetch data from server component to next server api. someone talk should change 127.0.0.1 but load page receive 500
Really, great tutorial. Would you please also add a video of adding animation while adding or removing users? I am able to add item inside a modal, but not able to edit because I have to fetch edit data on client which is not possible by server action. is there any way to do this?
I'm trying to login against a remote API. It works just like the video. But how can I show the custom message that the API provides? may be the user provided "wrong credentials", or may be the user "is not active". Any suggestions? I'm talking about the catch block in authenticate() from lib/actions
Thank you . I have a question. What's the difference between using custom authconfig and using WithAuth from next js. Which is better? And also can i use signout in the auth.js also can i use signout in a server component
hi how can we use middleware for APIs like in nodejs and how can get userID from token and perform some actions on API like in nodejs? How can pass token from frontend using axios interceptors like in react?
hi lama; at first thank you so much for sharing lots of valuable content to us; please talk about converting react web to PWA; i couldn't find any good example for this problem
Great Tutorial! I am getting an Error: NEXT_REDIRECT thrown after auth (even though the username hash and mongo connection are all OK). try catch block in the authenticate function in actions.js If i remove the catch all works fine. Anyone else have this ?
can someone explain me how can I create a user? I downloaded the completed repo and link to my mongodb but I can't figure out how can I access to the dashboard route because I cant log in
Thank you very much Lama dev, your explanation is very useful, but I can't connect to mongodb... Can someone publish the repository of the database to generate it locally, please?
sir can you make tutorial with this admin dashboard but with modal form for add and edit data please? i try 3 days but i still got error and im very stuck
Does anybody know how to do the whole authentication with TypeScript? There are quite a lot of issues with it when in V5, especially when not using Prisma.
@@Amvflix7 I scrapped the project because it's not possible to deploy it or use it in a professional world. This whole video is only giving you a vague idea of how things work but you're still left with a lot to figure out for yourself if you want to ever deploy it anywhere.
It looks, awesome I do want ro bookmarks this crash tutorials for future reference, but simce they are on JS and not TS, I cant actually keep them as my production references. I wish future full crash course are on TS.
Thank you for this great tutorial. Are you hasing passwords on the server here? Your hashing function is in addUser, in "user server" file. Is this safe? i'm just asking
anybody can help me i have watched the tutorial and i have download this project from git hub i have run this npm i and npm run dev and when i route to dashboard its asking me login and i have tried to setup the mongodb and passsed the uri and password still i have no collections there help me with this or tell me the process of running the full stack next js project
Hello Lama, a question, so I was able to complete the deployment and everything in the VPS, but after finishing the section the app stops running, how can I make it running always?
A project like this is significantly better than those repetitive OpenAI SaaS projects.
You are absolutely right
absolutely right
come on, check his channel, nothing but repetitive Dashboard projects :D
@@ahmeism90 lol :v
I think I go with OpenAI SaaS, it's show you aware of what is comming =))
i almost practiced 20 hours for 2 tutorial of nextjs and im in the path of mastering it, thanks lama dev. i hope next tutorial come soon and i actually want to learn how to build complete app with high level of security, lama dev thanks for being with me, im gonna build and upload my modern website! love from IRAN
I finished it after 6 months. I am so glad I eventually did it. Following you for more. Much love and respect
I was so confused abou how next js authentications and API works. I watched many toturial but didnot find any helpful. But after watching this video now i understand Next js and will try to create some dummy projects.
Thanks for this awesome toturial😍
I love this kind of tutorial, I am student and new for next.js and I just by watching this video I learn a lot. Although I can't memorize them all , I just watch it over and over hahaha😄. Lama dev, can you make a tutorial or a continuation of this video with file or image upload. Well appreciated works.❤
love your videos. you clearly know what your talking about. you make it look very simple. easy to trust your design decisions
Honestly this is better than those AI that are paid. Good work.
Lama, if you create a course on Next.js 14 + Headless CMS (preferably the simplest one, without deployment, i.e. not Strapi), let it be a one-page Landing page. For example, this could be Contenful simple and effective, or another but equally simple (although all of them are not relatively simple), but still it would be a very interesting lesson and there are very few of them on the Internet especially for Next.js 14. This is just an idea for future project, if you have the time or inclination to do it, I'd be happy to take a look!
Sanity io for sure ✨
I have just watch 27 minutes from this tutorial, its really empowring and much great tutorial, wow its like from zero to hero thank you man
I have been waiting for nextjs admin dashboard tutorial for years, thanks
Thank you for this next.js tutorial! Took me a bit longer than I expected (never learnt about next-auth before) but this is so helpful! Great explanation
Well explained, well coded and really interesting project, I am also making a crm like project and was really having trouble doing it. I opened TH-cam and this video popped first. Thanks for this!
can i get the code??
This is the most informative tutorial about Next.js 14 features I’ve seen so far. Thank you! 😄 You answered all of my questions
I like, when you say " OK, Perfect" :) . Thank you, for your lessons !!!
in the pagination fetch.
Error: MongoServerError: BSON field 'skip' value must be >= 0, actual value '-2'
here is an solution. in all fetch that includes the BSON find() and skip();
.skip(-2 + (itemsPerPAge * page) );
Thank you man. Server actions make sense now. I wonder what is you opinion on API vs server actions. Can't wait the next video
Plz make some more projects on next js and tailwind css only ❤ your project is more valuable than any course that cant provide
We want more Projects using Mern Stack Technology please ❤️♥️
Hey there! I really enjoyed watching your video about setting up an admin dashboard. It was super informative! I'm currently working on a project where I need to implement different user roles for the admin dashboard. I noticed you covered the basics of setting up the dashboard, but I was wondering if you could do a follow-up video or provide some guidance on how to add different user roles, like "admin," "moderator," and "viewer." Any tips or suggestions on how to approach this would be greatly appreciated! Thanks in advance!
23:30 - If the avatar image doesn't show, manually refresh the page. Also, import the "Image" component from "next" lib.
holy....s... THX bro!
Hello sir thank you so much for teaching us. just want you to let you that please make tutorials on advance topics of MERN for example, zod with react-form-hook, react-i18 for Multilanguage application, and tutorial on webRtc. please make tutorials on this top. because we have more than enough videos on MERN but these advance topic are having very less tutorials
it does not work if middleware.js is in the root but works if it is in src directory
This is what I have been looking for. Thank you so much ❤
I followed the entire tutorial, but I still have an error, which unfortunately I can't resolve, when adding the middleware it doesn't redirect.
Server Error
TypeError: Invalid URL
This error happened while generating the page. Any console logs will be displayed in the terminal window.
help me :(
Really looking forward to doing this project. Just some feedback... I do wish it was mobile responsive though as people looking at my portfolio will often visit it using a mobile device.
I am @1:13:56 and after I finish this tutorial I am going to use bootstrap in my next training project. Thank you very much Lama Dev for this video tutorial! It's so great!
Again an amazing tutorial 🎉🎉
@LamaDev thanks for video. can you share VSCode theme?
This tutorial is absolutely amazing thank you so much!!!💯
Own css better then framework . Very nice I will use this in my project on large skill
Hi Lama, please upload new project using React, Next Js with Typescript which is very usefull for us
Authentication session is required separately in a another video. would help us a lot❤❤
finally made it work. But these url need to be run first time inside. first time every page taking forever
This is GREAT Lama Dev! KUDOS!
I'm feeling excited about this already
Hello, compliments of the day to you and thanks for your videos and the hard work you put into them. Can you kindly create a tut that shows how to monitor user inactivity in Nextjs 14 and logout when there hasn't been any user activity (first notifies user via modal warning first - if no response, logs user out after inactivity timeout expiry). Secondly, a tut on how to manage routing based on user role (so protected pages logic)
In the connectToDB function you are trying to cache existing connection if it's not available in a caching object. But the object is inside the function. So everytime we try to connect to db it will be create a new instance of the caching object. So the caching should not be inside the function.
You are right. Fixed! Thank you for the comment ☺️
God will always bless you abundantly and continue increase your knowledge, we always enjoying you , by the grace of God you will enjoy yourself.
Thank you Lama a great tutorial. The only issue I have is with the pagination feature. When the disabled prop is set on the
Why don't you use tailwind and typescript? 😞
I had the same question ⁉️
Why should he?
Tailwind is the worst cancer I have seen in web dev for ages.
Typescript is usefull but slowly looses popularity lately. Probably not used to keep it simple
@@rufusr5880useless comment. No offense
Pure js and css is easier than headache of Typescript
@@rufusr5880tailwind is nothing is just css people just hate it for no reason
One full stack project with Nextjs + Ruby on rails as backend + postgresql as database please 😁
I think the video is great. I would consider do the server part for lower level audience.
is it just me, facing error when try to login 3:21:40 , entering correct username and password but the wrong credentials keep appear, and when i reload the page then its redirect me to dashboard instead. tried github code, and still the same
me too
do you have a solution? I have same problem
There is a fix on the Github repo on the Pull Requests. All you have to do is in the authenticate function is set the redirect to false and manually redirect outside the try catch block.
export const authenticate = async (prevState, formData) => {
const { username, password } = Object.fromEntries(formData);
try {
await signIn('credentials', { username, password, redirect: false }); // add redirect false
} catch (err) {
return 'Wrong Credentials!';
}
redirect('/dashboard'); //manually redirect
};
@@andrei.duduman still doesnt work for me after fixing it. Saying wrong credentials
@@andrei.duduman thank you! its works
Would you please make a video explaining how to manually update the session data after updating user information, e.g the user avatar and username
Hello friends, and thank you Lama for your content, something here worries me, until now in the content that I have found they always mentioned that for the content of the components that generate the routes, arrow functions should not be used, but I see that your You always use them, so I don't know what to do there, although I suppose I should go to the documentation hehehehehe. thank you so much.
thank u lama for this great project i have big respect for u
I have a quick question. I've implemented cookies and JWT authentication in my NestJS backend. Now I'm working on the Next.js frontend, and I have a server component that sends a request to the backend (Nest) to get protected data. However, I'm receiving an "unauthorized" message from the backend in the server component.
Note: I'm using HTTPS-only cookies and ngrok for HTTPS in development.
How to solve this? means how i can configure next js
How i can forwards the secure cookies from Server compoents to the nest js backend that are comming from the browser
Thankyou for the wonderful project. I am a beginner and starting to learn the backend, and I am following along with your tutorial. I would like to ask if I'm going to need Node.js for the backend, or if Nextjs is capable enough to do the fetching of the data and handling of backend logic? Since I've been watching a lot of videos about Next.js, and some of them say that Next.js is a full-stack framework and is only good for client-side web due to its ssr and not good for backend intensive projects. I would like to ask your take here thankyou.
Question for the experts: What should I do if the DB is lets say MySql/Postgres? Is there an effecient way?
you're my savior
This is a very cool tutorial an d i have been enjoying you tutorials, i learn react completely from this channel and now i'm learn nextjs. KUDUS to Lama Dev. Thanks for the tutorials. i have one confusion here on how to add social media login with role base authorization.
Lama the king of React
Hi Lama, at 20.21, line number 83 I can't render anything {cat.title}. only when I use "return" i.e. return {cat.title}, it starts to work all of a sudden. Any idea why?
I copied your completed project but my problem is that once the credential is correct it doesn't directly proceed to dashboard instead I need to refresh the page before the dashboard is shown. thanks for your code I'm learning a lot
Another amazing video from our Master
Have anyone tried the completed code recently? i found an error when I am login in. it says user is null
When / how is the products and users tables being created given the completed file? It seems you are using previous database info to make the user or bypassing the login auth. How do we do this? Does mongoose have no auto schema push like prisma?
Finally😍❤️ cant wait to learn it
I went down a 20 minute rabbit hole looking at the artwork of the person who did the astronaut illustration. 😂
Thanks for the tutorial. But my RootLayout is affecting (the header and footer of my app appear in the dashboard page) the DashboardLayout because I put Header and Footer component in my RootLayout. How is the solution?
Thanks for this wonderful tutorial. Please let me know how to return an error like incorrect email or password from auth.js to actions.js because as per your code it is not throwing an actual error to login page.
Great video thank you. I am new, How i keep de conexion open from the terminal when i deployed i keep my laptop open all the day?
Do you know why when we run build the system show Fetch Failed some page fetch data from server component to next server api. someone talk should change 127.0.0.1 but load page receive 500
Really, great tutorial. Would you please also add a video of adding animation while adding or removing users?
I am able to add item inside a modal, but not able to edit because I have to fetch edit data on client which is not possible by server action. is there any way to do this?
Why my page content does not change when i type dashboard/products url? Thanks for help
I'm trying to login against a remote API. It works just like the video. But how can I show the custom message that the API provides? may be the user provided "wrong credentials", or may be the user "is not active". Any suggestions? I'm talking about the catch block in authenticate() from lib/actions
thanks for great tutorial! i just finished this project and deployed in vercel i have 405 error do you have any idea how to fix this?
Thank you . I have a question. What's the difference between using custom authconfig and using WithAuth from next js. Which is better? And also can i use signout in the auth.js also can i use signout in a server component
thanks man for this great tutorial
It helped me aloy ❤❤❤
The margin adding to 'cat' doesn't work, cause span is an inline element. Have to change it to a block element or something.
good job man! thanks for this video!
I'm follow all step of your code. But a createsAt date data from mongodb not showing in the 'Created At' column. Can anyone help me about this?
thank you its really amazing project
Hi, is it possible to implement a cron job with next.js without deploying to vercel? Also how can next.js server components cache data in in memory?
hi
how can we use middleware for APIs like in nodejs and how can get userID from token and perform some actions on API like in nodejs?
How can pass token from frontend using axios interceptors like in react?
hi lama; at first thank you so much for sharing lots of valuable content to us; please talk about converting react web to PWA; i couldn't find any good example for this problem
Great Tutorial! I am getting an Error: NEXT_REDIRECT thrown after auth (even though the username hash and mongo connection are all OK). try catch block in the authenticate function in actions.js If i remove the catch all works fine. Anyone else have this ?
I also get this problem. I am trying to find the solution. Please share with me if you fixed it. Thanks.
Did you solve the problem?
I get same issue, did anyone figure out why?
faced the same problem :(
me too
can someone explain me how can I create a user? I downloaded the completed repo and link to my mongodb but I can't figure out how can I access to the dashboard route because I cant log in
This is a fantastic tutorial !
Thank you very much Lama dev, your explanation is very useful, but I can't connect to mongodb... Can someone publish the repository of the database to generate it locally, please?
My next task is create responsive navigation using this code as base. Also i probably name folder as database and schema folders not lib
Teacher type comp then code auto complete added. What's extension that shoud be installed?
sir can you make tutorial with this admin dashboard but with modal form for add and edit data please? i try 3 days but i still got error and im very stuck
what is extension , when you typing "comp" and complete the function??
Build a CRM like tool. There is no video available on the youtube....pls I need it!
love your content! keep it up
Does anybody know how to do the whole authentication with TypeScript? There are quite a lot of issues with it when in V5, especially when not using Prisma.
can you share the link of your repo? I want assets, the completed project link that lama provided, didn't have complete assets.
@@Amvflix7 I scrapped the project because it's not possible to deploy it or use it in a professional world. This whole video is only giving you a vague idea of how things work but you're still left with a lot to figure out for yourself if you want to ever deploy it anywhere.
I think i changed directory structure with src and it broke everything. logout dont return to login page.
It looks, awesome I do want ro bookmarks this crash tutorials for future reference, but simce they are on JS and not TS, I cant actually keep them as my production references. I wish future full crash course are on TS.
I want NextAuth to call signOut event when refresh token expire.
Is there any way to do it ?
Thank you for this great tutorial. Are you hasing passwords on the server here? Your hashing function is in addUser, in "user server" file. Is this safe? i'm just asking
anybody can help me i have watched the tutorial and i have download this project from git hub i have run this npm i and npm run dev and when i route to dashboard its asking me login and i have tried to setup the mongodb and passsed the uri and password still i have no collections there help me with this or tell me the process of running the full stack next js project
Hello Lama, a question, so I was able to complete the deployment and everything in the VPS, but after finishing the section the app stops running, how can I make it running always?
Use pm2
Hi,
Please share your thoughts on Remixjs
Thanks for this video, it's nicely done. Can you come up with Full-stack Airbnb Clone in Next.js and Mongo DB.
After refreshing users , it show the user name then admin logged in username replaces it
second half is really confusing, changing server actions into api routes, not completing them, jumping into implementation of auth
no loading(feedback to the user) when deleting or adding an user?
the best tutorials all the way
Username gets replaced in user detailpage. need to find why..who is doing it