Claude-skill-registry-data micro-frontend-federation

Orchestrate distributed React applications using Module Federation and shared context bridges.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/micro-frontend-federation" ~/.claude/skills/majiayu000-claude-skill-registry-data-micro-frontend-federation && rm -rf "$T"
manifest: data/micro-frontend-federation/SKILL.md
source content

Micro-Frontend Federation (React 18)

Summary

Orchestrate distributed React applications using Module Federation and shared context bridges.

Key Capabilities

  • Share React Context across federation boundaries.
  • Manage version skew in shared dependencies at runtime.
  • Isolate styling and event propagation between remote modules.

PhD-Level Challenges

  • Design a fault-tolerant loading strategy for failing remotes.
  • Prove type-safety across dynamic module boundaries.
  • Analyze memory overhead of duplicate dependency loading.

Acceptance Criteria

  • Deploy a host app with seamlessly integrated remotes.
  • Demonstrate shared state synchronization.
  • Document the dependency sharing policy.