electron-react-shadcn
v1.0.8
Published
An npx cli for creating electron app with react and shadcn
Downloads
579
Readme
electron-react-shadcn
An npx cli for creating electron app with react and shadcn. The main template is located at electron-react-shadcn.
npx electron-react-shadcn
Overview
This Electron boilerplate enables developers to quickly build cross-platform apps using Electron, Vite, and React with Shadcn UI. Based on @alex8088’s awesome npm create @quick-start/electron
package, this template includes added styling (Tailwind, Shadcn UI) and testing libraries (Jest, Testing Library) to streamline setup and save development time.
Tech Stack
| Category | Technology | |---------------------------|---------------------------------------------------------------------------------------------| | Software Framework | Electron | | Frontend Library | React | | Build Tool | Vite, Electron-Vite | | UI and Styling | shadcn, Tailwind | | Testing | Vitest, Testing Library |
Quick Start
Option 1 (Recommended): Use npx electron-react-shadcn
to create a new project.
You can use this command to create a new project with this boilerplate directly in the directory. You can also setup and project name and theme colors by following the command prompts.
# create a new project using this boilerplate
npx electron-react-shadcn
# navigate to the project folder
cd electron-react-shadcn
# install dependencies and run the project in dev mode
npm install && npm run dev
Option 2: Clone this repository directly
You can use this boilerplate by directly downloading or clone this repository, and install the dependencies.
# clone this project
git clone https://github.com/terrence-ou/electron-react-shadcn.git
# navigate to the project folder
cd electron-react-shadcn
# you can choose to remove the git info from this repo to avoid potential git conflicts
sudo rm -r .git
# install dependencies
npm install
# start the project in dev mode
npm run dev
Test and build commands
There're some pre-defined commands you might find useful
# run unit test
npm run test
# run test coverage
npm run coverage
# build app for different platforms
npm run build:mac # build for mac
npm run build:win # build for windows
npm run build:linux # build for linux
Project Structure
├── resources/ # Additional resources for the app
├── src/ # Main source code
│ ├── main/ # Main process code
│ │ ├── lib/ # Libraries for main process logic
│ │ └── index.ts # Entry point for the main process
│ ├── preload/ # Preload scripts
│ │ ├── index.ts # Preload script entry point
│ │ └── index.d.ts # TypeScript declarations for preload
│ ├── renderer/ # Renderer process code (front-end)
│ │ ├── src/ # Source for renderer
│ │ │ ├── __tests__/ # Tests for renderer components
│ │ │ ├── assets/ # Assets for the renderer
│ │ │ ├── components/ # React components
│ │ │ │ └── ui/ # Shadcn UI components
│ │ │ └── utils/ # Utility functions
│ │ ├── App.tsx # Main application component
│ │ ├── env.d.ts # TypeScript environment declarations
│ │ ├── main.tsx # Main entry point for the renderer
│ │ └── index.html # HTML template for the renderer
│ └── shared/ # Shared code between main and renderer
├── .gitignore # Git ignore patterns
├── components.json # Shadcn Components configuration
├── electron.vite.config.ts # Vite configuration for Electron
├── vitest.config.mjs # Vitest testing configuration
├── LICENSE # Project license
├── package.json # Project metadata and dependencies
├── package-lock.json # Dependency lock file
├── postcss.config.js # PostCSS configuration
├── README.md # Project documentation
├── tailwind.config.js # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration (general)
├── tsconfig.node.json # TypeScript configuration for Node.js
└── tsconfig.web.json # TypeScript configuration for web