jikime-migration-jquery-to-react

Migrate jQuery applications to React 19 with hooks and fetch API.

5|1|Updated Jan 24, 2026
One-click install
npx skills add https://github.com/jikime/jikime-adk --skill jikime-migration-jquery-to-react
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jikime-migration-jquery-to-react
Source: https://github.com/jikime/jikime-adk/tree/main/templates/.claude/skills/jikime-migration-jquery-to-react
Command: npx skills add https://github.com/jikime/jikime-adk --skill jikime-migration-jquery-to-react

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the complex and time-consuming process of migrating legacy jQuery codebases to modern React applications, ensuring a smooth transition with minimal disruption.

Core Features & Use Cases

  • Code Conversion: Translates jQuery DOM manipulation, event handling, and AJAX calls into idiomatic React patterns using hooks and functional components.
  • Dependency Mapping: Identifies and suggests modern React alternatives for common jQuery plugins.
  • Use Case: You have a large, established web application built with jQuery and want to modernize it to leverage React's component-based architecture, performance benefits, and developer experience. This Skill will guide you through the transformation.

Quick Start

Use the jikime-migration-jquery-to-react skill to convert the jQuery code in the 'src/legacy' directory to React.

Frequently Asked Questions about jikime-migration-jquery-to-react

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I migrate jQuery DOM manipulation code to React hooks?

Migrate jQuery DOM manipulation to React by converting $() patterns into useRef hooks, ensuring direct DOM interactions transition into React's functional component architecture and TypeScript compatibility.

What is the best way to convert jQuery event handlers and $.ajax calls to React?

Convert jQuery event handlers to React's synthetic events and replace $.ajax calls with the fetch API. This translates legacy asynchronous logic into idiomatic React functional component patterns.

How do I find modern React alternatives for my legacy jQuery plugins?

Identify and replace jQuery plugins with modern React component alternatives by mapping legacy dependencies to functional React components, supporting a component-based architecture during the migration process.

Can I migrate a large legacy jQuery codebase directly to React 19 with TypeScript?

Yes, you can migrate large legacy jQuery applications to React 19 with TypeScript. The process supports component-based architecture and translates existing JavaScript patterns into typed React functional components.

Does converting jQuery to React require rewriting all existing AJAX logic?

Converting jQuery to React requires replacing $.ajax with fetch API calls. The migration translates existing AJAX logic into modern fetch requests integrated within React functional components and TypeScript architectures.