| 
				
					
						
							 | 
			||
|---|---|---|
| configs | ||
| scripts | ||
| src | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
| README.zh-CN.md | ||
| electron-builder.json | ||
| package-lock.json | ||
| package.json | ||
| paths.json | ||
| tsconfig.json | ||
| types.d.ts | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	vite-react-electron
English | 简体中文
Overview
- 
All config files
Main-process,Renderer-processandPreload-scriptthey are inconfigs/*.ts. - 
All files are built using
Vite, is supper fast. - 
scripts/build.mjsjust calls theViteAPI and uses theconfigs/*.tsconfig file to build. - 
The difference between
scripts/watch.mjsandbuild.mjsis that the watch option is configured for the Main-process and Preload-script. The Renderer-process usesrequire ('vite').createServer - 
Manage projects more through configuration other than scripts. -- 🥳 Simple and clearly
 
Run Setup
# clone the project
git clone git@github.com:caoxiemeihao/vite-react-electron.git
# enter the project directory
cd vite-react-electron
# install dependency
npm install
# develop
npm run dev
Directory
├
├── configs
├   ├── vite.main.ts                 Main-process config file, for -> src/main
├   ├── vite.preload.ts              Preload-script config file, for -> src/preload
├   ├── vite.renderer.ts             Renderer-script config file, for -> src/renderer
├
├── scripts
├   ├── build.mjs                    Build script, for -> npm run build
├   ├── electron-builder.config.mjs
├   ├── watch.mjs                    Develop script, for -> npm run dev
├
├── src
├   ├── main                         Main-process source code
├   ├── preload                      Preload-script source code
├   ├── renderer                     Renderer-process source code
├
dist and src
- 
Once
npm run devornpm run buildis executed. Will be generateddist, it is the same as thesrcstructure. - 
This ensures the accuracy of path calculation.
 
├── dist
|   ├── main
|   ├── preload
|   ├── renderer
├── src
|   ├── main
|   ├── preload
|   ├── renderer
|
Shown
Wechat group | | 请我喝杯下午茶 🥳