Storybook Talk / Live Coding
A developer shares insights from a talk on Storybook, a tool for building and documenting UI components in isolation, including live coding examples.
A developer shares insights from a talk on Storybook, a tool for building and documenting UI components in isolation, including live coding examples.
Explains why useMemo isn't reliable for one-time React initializations and demonstrates the correct useState pattern for stable resource creation.
A guide to using React Context effectively, covering its purpose, creation, and best practices to avoid common pitfalls.
A developer shares their quick experience migrating a medium-sized React app to Preact using Vite in under 10 minutes.
A web developer shares a personal list of technologies and skills, including React, TailwindCSS, and English, they aim to learn in 2021 to advance their career.
A guide on writing React components in TypeScript, covering prop typing and avoiding common pitfalls like React.FC.
A tutorial explaining the React useRef() hook, covering mutable values and DOM element access in three practical steps.
A guide to optimizing React context value for performance, recommending state/dispatch separation and warning against premature optimization.
Explains why boolean function parameters are often a code smell and suggests better design alternatives.
React performance tips: two techniques to optimize re-renders before using memo() or useMemo().
Explains a TypeScript type inference issue when custom React hooks return arrays and provides two solutions using tuples or 'as const'.
A concise guide to learning Next.js, covering its core concepts, features, and setup in a tweet-thread format.
Learn 5 essential tips for React's useState hook, including functional updaters and common pitfalls to avoid in your code.
Explores the 'build vs buy' decision for UI component libraries, weighing custom development against using existing solutions.
Argues for encapsulating React hooks in custom hooks to improve code readability, maintainability, and intention clarity.
A guide to advanced tips and best practices for using styled-components in React to improve code quality and developer happiness.
An overview of the React ecosystem in 2021, covering hooks, libraries, and best practices for developers.
A guide to organizing a React application within a standard Java/Spring Boot project folder structure (src/main/js, src/test/js).
A guide to identifying and fixing common infinite loop issues when using the React useEffect hook in your components.
A guide on using environment variables in React to securely manage sensitive data like API keys and database credentials.