Documentation Index
Fetch the complete documentation index at: https://js.maxbraglia.com/llms.txt
Use this file to discover all available pages before exploring further.
What you’ll build
By the end of this course, you’ll build interactive web UIs with React and connect them to a FastAPI backend. You’ll go from “I know Python” to “I can build a full-stack web app.”UserList.jsx
What you’ll learn
This course covers the JavaScript you actually need for web development — not everything JavaScript can do, but the 20% you’ll use 80% of the time.- JavaScript fundamentals — variables, functions, arrays, objects, and how they differ from Python
- Async programming — fetch data from APIs, handle errors, manage loading states
- DOM basics — select elements, handle events, work with forms
- React — components, props, state, effects, and common UI patterns
- Full-stack integration — connect a React frontend to a FastAPI backend with a complete CRUD app
This course has a companion repository: a production-ready FastAPI + React application you’ll reference throughout Section 8. You can find it on GitHub.
Course structure
The course is organized into 9 sections. Each one builds on the last:| Section | What you’ll learn |
|---|---|
| Introduction | What you’ll build, who the course is for, and how to study it |
| Getting Started | Install Node.js, set up VS Code, run your first JavaScript file |
| JavaScript Core | Variables, data types, functions, scope — the foundation |
| Working with Data | Arrays, objects, destructuring, JSON — how data moves around |
| Async & APIs | Promises, async/await, fetch — how to talk to your backend |
| DOM & Browser | Select elements, handle events, work with forms — the browser layer |
| React Essentials | Components, props, state, effects — building interactive UIs |
| Full-Stack | Connect React to FastAPI — build a real CRUD application |
| Next Steps | Where to go after this course |
How the sections depend on each other:
- JavaScript Core + Working with Data → the syntax and patterns React code is built on
- Async & APIs → required before React data fetching feels natural
- DOM & Browser → helps you understand what React is abstracting
- React Essentials → prerequisite for the Full-Stack section
- Full-Stack → combines everything into one app flow (frontend + FastAPI)
What’s next?
Before diving in, let’s make sure this course is the right fit for your background and goals.Is this for you?
Check if your background matches what this course expects