How to Migrate Create React App (CRA) Project to Vite (Plain JavaScript)

Table of contents
- ๐งญ Why Vite?
- ๐ Step 1: Navigate to Your Project Directory
- ๐งน Step 2: Clean Up CRA Artifacts
- โ๏ธ Step 3: Install Vite & React Plugin
- ๐ Step 4: Update package.json Scripts
- โ๏ธ Step 5: Create vite.config.js
- ๐งฉ Step 6: Rename Entry File
- ๐ Step 7: Create Vite-Compatible index.html
- ๐ฆ Step 8: Reinstall Dependencies
- ๐ Step 9: Start the Dev Server
- โ ๏ธ Step 10: Convert .js Files to .jsx
- โ Done!
If you're planning to migrate your existing React project made with Create React App (CRA) and you're using plain JavaScript, you're in the right place. In this guide, weโll walk through the exact steps to move your CRA project to Vite โ quickly and smoothly.
๐งญ Why Vite?
Vite offers:
โก๏ธ Lightning-fast dev server
โจ Instant module hot reloading (HMR)
๐ ๏ธ Simpler config and better build performance
๐ Step 1: Navigate to Your Project Directory
Open your terminal (e.g., Git Bash) and go to the root of your CRA project:
cd ~/ReactChat/chat-app
๐งน Step 2: Clean Up CRA Artifacts
Delete existing CRA-generated files:
rm -rf node_modules build package-lock.json
Uninstall CRA-related packages:
npm uninstall react-scripts
โ Optionally, remove CRA-specific testing packages:
npm uninstall @testing-library/* jest
โ๏ธ Step 3: Install Vite & React Plugin
Install the Vite dev server and React plugin:
npm install --save-dev vite @vitejs/plugin-react
๐ Step 4: Update package.json
Scripts
Replace the CRA scripts with Vite scripts:
npm pkg set scripts.dev="vite"
npm pkg set scripts.build="vite build"
npm pkg set scripts.preview="vite preview"
Then remove CRA-specific scripts like:
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject"
โ๏ธ Step 5: Create vite.config.js
Create and open the config file:
touch vite.config.js
code vite.config.js
Paste the following content in the file:
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
},
});
๐งฉ Step 6: Rename Entry File
Rename the CRA entry point from index.js
to main.jsx
:
mv src/index.js src/main.jsx
๐ Don't forget to update any import paths pointing to
index.js
.
๐ Step 7: Create Vite-Compatible index.html
Vite expects index.html
at the root (not in public/
).
Create and edit it:
touch index.html
code index.html
Paste the following in the same file:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
โ Make sure the
main.jsx
path is correct!
Now remove the CRA index.html
:
rm public/index.html
๐ฆ Step 8: Reinstall Dependencies
Reinstall project dependencies:
npm install
๐ Step 9: Start the Dev Server
Start your app with:
npm run dev
Visit: http://localhost:3000
โ ๏ธ Step 10: Convert .js
Files to .jsx
Vite handles JSX better when files are explicitly .jsx
.
๐ Preview all .js
files:
find src -type f -name "*.js"
๐ Batch rename .js
โ .jsx
:
find src -type f -name "*.js" -exec bash -c 'mv "$0" "${0%.js}.jsx"' {} \;
Also, update all import paths referencing the renamed files.
โ Done!
Youโve now successfully migrated your CRA project to Vite ๐
Enjoy:
Blazing-fast hot reloads โก๏ธ
Smaller and optimized builds ๐ฆ
Simpler config and better DX ๐ ๏ธ
Subscribe to my newsletter
Read articles from Niranjan Singh directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
