agentskills.codes
RE

react-useeffect-avoid

Guides when NOT to use useEffect and suggests better alternatives. Use when reviewing React code, troubleshooting performance, or considering useEffect for derived state or form resets.

Install

mkdir -p .claude/skills/react-useeffect-avoid && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15839" && unzip -o skill.zip -d .claude/skills/react-useeffect-avoid && rm skill.zip

Installs to .claude/skills/react-useeffect-avoid

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Guides when NOT to use useEffect and suggests better alternatives. Use when reviewing React code, troubleshooting performance, or considering useEffect for derived state or form resets.
185 chars✓ has a “when” trigger

About this skill

React: When Not to Use useEffect

Core Principle

useEffect is an escape hatch for synchronizing with external systems, not a general-purpose tool for state management or event handling.

Modern React patterns prioritize one-way data flow and event-driven updates over effect-based synchronization to avoid performance penalties and complex synchronization bugs.

Decision Tree

Need to sync with external system?
├─ Yes (browser APIs, websockets, timers)
│  └─ Use useEffect
│
└─ No (pure React application logic)
   ├─ Derived state calculation?
   │  ├─ Yes → Calculate during render
   │  └─ No → Continue...
   │
   ├─ User action triggered?
   │  ├─ Yes → Use event handler
   │  └─ No → Continue...
   │
   ├─ State reset needed?
   │  ├─ Yes → Use key prop
   │  └─ No → Continue...
   │
   └─ Really need effect after re-think?
      └─ Yes → Use useState/useReducer/setState pattern

Quick Reference

❌ Don't use useEffect for:

ScenarioProblemAlternative
Derived stateDouble renderCalculate during render
State resetsStale dataUse key prop
User actionsLost intentEvent handlers
List filteringExtra rendersFilter in render
Browser APIsTearing bugs (concurrent)useSyncExternalStore
Form submissionFragile flag patternDirect async handler
Data fetchingManual cache managementReact Query, SWR, Suspense

✅ DO use useEffect for:

  • Subscribing to external systems (websockets, browser APIs, etc.)
  • Setting up timers with cleanup
  • Managing third-party library integration
  • Document title changes
  • Analytics/telemetry when rendering completes

React 19: New Alternatives

// React 19+ - Direct resource reading
function UserProfile({ userId }) {
  const user = use(fetchUser(userId)); // Reads promise directly
  return <div>{user.name}</div>;
}

Progressive Disclosure

TopicFileWhen to Use
Anti-patterns with examplescontext/anti-patterns.mdDetailed code examples of useEffect mistakes
Patterns to always avoidcontext/patterns-to-avoid.mdCommon anti-patterns like logging, DOM manipulation
Decision tree & referencescontext/decision-tree.mdQuick lookup and further reading

References

Search skills

Search the agent skills registry