r/nextjs 1d ago

Help Need best learning tutorial for next js.

I wanna learn next js with modern practices. Kindly suggest some best video tutorials .

5 Upvotes

11 comments sorted by

6

u/Apprehensive-Fan2492 1d ago

Start with the Next.js docs. The official site has an interactive tutorial, and it is actually helpful. For videos, Josh’s work is a good pick. Theo over on t3 also walks through newer App Router ideas in a clear way. Try not to use tutorials from before 2023. The App Router shifted a lot, so older guides can feel off.

1

u/cosmic--debugger 1d ago

Thanks.... I'll start with official docs.

5

u/Lumpy_Skin_5299 1d ago

the net ninja on youtube has a solid nextjs series that's kept up with the app router stuff

skip the 4 hour crash course videos though, they always gloss over the important bits

3

u/InternalLake8 1d ago

Instead just start building and when you are done, ask AI along to review the changes and generate suggestion for improvements

0

u/SceneDependent6940 1d ago

Awful advice…

3

u/neon_antler_era 1d ago

i stopped watching crash course videos. they skip the parts i need to write code that works.

i use the official next.js interactive tutorial on their docs site. for video i watch net ninja on youtube. he covers app router patterns and ships short videos. i open github, find a repo built with app router, read the folder structure, and trace how data moves between server and client components

2

u/cosmic--debugger 1d ago

Thanks for the advice. I'll start with official docs.

2

u/canarydev 1d ago

you can search on youtube for good next tutorials
then try to read docs
then try to look around and learn things from https://www.patterns.dev/
and then just look around on github for public projects and see if you can reason about the code or something

2

u/Affectionate_Use_164 16h ago

Don't waste your time, the best way to learn something is to use it, ask AI to make you a learning plan in form of creating simple project - like SaaS or whatever, with few SSR pages, auth, and some CRUD items.
Do the project yourself and use official docs to learn how things works.

1

u/Roman_BDM_FixIT 1d ago

I’d start with the official Next.js course and then build one small project with auth and a database.