The purpose of this guide is to provide a list of several free ressources (articles π, books π, videos π¬) which will help you to learn modern JavaScript and the React library.
- Learn Web Development π will also teach you HTML and CSS.
- Eloquent JavaScript π is perfect to learn JS and general programming concepts.
- The Modern JavaScript Tutorial π How it's done now. From the basics to advanced topics with simple, but detailed explanations.
- Learn ES6 (ECMAScript 2015) π¬ if you used to write JavaScript a while ago and wanna catch up with modern syntaxes.
- Modern JavaScript Explained For Dinosaurs π you will learn basics about npm, Babel, Webpack etc.. and the history behind it.
- Understanding Hoisting in JavaScript π if you come from another programming language, you might feel uncomfortable with how we can declare variables in JS. This article will help you to feel better!
- Debug JavaScript π¬ Firefox or Edge also have their own devtools, but I personally prefer using Chrome ones when coding.
- Functional Programming in Javascript π¬ those videos are made by a former Spotify JS developer. He will teach you essential concepts like Promises, Closures or Higher Order Functions. Those things are essentials in React.
- Composition over Inheritance π¬ At school I had to do a lot of Object Oriented Programming. This video helped me to understand why it's not always necessary.
Sometimes you will need to search for documentation, for example if you don't know a specific keyword in a codebase or you would like to learn how to use a native function. Of course you can use any search engine or Stackoverflow but I would recommend using the MDN Web Docs.
- What is React: A Visual Introduction For Beginners π
- JavaScript to know for React π
- The official doc is the best place to learn React.
- The Beginner's Guide to React π¬
- Progressive React π tips to make your React site performant. web.dev also has a lot of articles like that.
- Learning Patterns π Patterns for building powerful web apps with vanilla JavaScript and React.
The hooks are very React specific, I suggest you check Why React Hooks? π π¬ in order to learn more about React history and or why we now use hooks. You might also want to learn about Class components and some patterns used to share logic between components (before hooks arrival) because there are still present in a lot of codebases:
- Compare the Hook Flow Diagram π with the Class Component Lifecycle Methods Diagram π
- Higher Order Components: A React Application Design Pattern π
- Render Props π
At some point you might think it would be nice to have access to some kind of global state in any React component in order to avoid passing down props again and again... People might tell you to use Redux or MobX or Apollo or XState or [insert popular library name] to achieve that but it might be overkilled! I would recommend reading the article React State Management Libraries and How to Choose π to get a nice overview. React libraries for 2023 will also tackle this subject and many more!
- Stay up to date and discover new things with React Newsletter and Bytes newsletter;
- Practice React with create-react-app π» or directly in your browser on codesandbox π
- Build production ready apps with: Vite, Next.js, Gatsby, React Native via Expo;
- Learn CSS An evergreen CSS course and reference to level up your web styling expertise. π
- Modern CSS Explained For Dinosaurs π
- CSS-in-JS or CSS-and-JS π
- Styling and CSS Official React doc π
- Tailwind
- CSS Modules
- vanilla-extract
- Emotion
- Styled Components, I think they are the best in between choice for those who are used to write "classic" CSS and want to take advantage from mixing it with JavaScript.
Maybe you just want to build an app and avoid spending a lot of time writing CSS and HTML. I suggest you use libraries such as Material-UI, Ant Design or Polaris. If you want to build your own design system I would suggest you to read Atomic Design.
- But really, what is a JavaScript test? π
- How to use React Testing Library Tutorial π Understand Jest and learned how to write automated tests via React Testing Library (there are others testing libraries but RTL is a great one recommended by the official doc).
- Understanding Jest Mocks π Mocking is a technique to isolate test subjects by replacing dependencies with objects that you can control and inspect.
- Why Cypress? π¬ a library to write end-to-end tests and more;
- Code editor: VS Code;
- Auto code formatter: Prettier;
- Linter: ESLint;
- Manage Git via an UI instead of commands: Sourcetree or VS Code;
- Build and deploy you app: Netlify;
- Continuous Integration: Travis CI;
- Buy domain name: Google Domains;
- Routing: react-router;
- Internationalization: LinguiJS;
- Develop your components in isolation and share them to your team via Storybook. Deploy your Storybook and run screenshot tests on each story via Chromatic;
- API Mocking when testing: Mock Service Worker;
The ones I recommend after completing them:
- Wes Bos courses π¬ JavaScript, React, CSS and more; some are even free!
- Kent C. Dodds courses π¬ React, Testing;