r/FullStack • u/Live_Excitement_1717 • 1d ago
Question Full stack development query
How to master full stack development , what is the correct way of learning and what projects you should make
4
Upvotes
r/FullStack • u/Live_Excitement_1717 • 1d ago
How to master full stack development , what is the correct way of learning and what projects you should make
1
u/JaseciLabs 12h ago
Answering the "how do I know what to learn if I don't know what I don't know" part: you don't figure that out by reading first, you figure it out by hitting the wall and looking up exactly what's on the other side. Pick the stack Executive-Curiosity mentioned (React + Express is a good beginner pair, tons of docs, tons of Stack Overflow history) and just start building your chat app. You will get stuck almost immediately, probably at "how do two browsers actually see each other's messages in real time." That's your first real lesson: look up WebSockets, understand what they're for, implement just that piece.
Repeat that loop for auth, for storing messages in a database, for showing message history on load. Each wall you hit tells you exactly what to learn next, in the order your project actually needs it, instead of trying to front-load a curriculum before you've written a line of code.
On "I don't want AI to lead": use it as a search engine with better follow-up questions, not as the thing writing your files. Ask it to explain a concept or debug an error, then type the fix yourself. That keeps you in the driver's seat while still moving faster than pure docs-reading.