-
Notifications
You must be signed in to change notification settings - Fork 125
How to use
Guasam edited this page Mar 10, 2025
·
2 revisions
Clone the repository and install dependencies:
# Clone the repository
git clone https://github.com/guasam/electron-react-app
cd electron-react-app
# Install dependencies
npm install
# or
yarn
# or
pnpm install
# or
bun installStart the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun run devThis will start Electron with hot-reload enabled so you can see changes in real time.
Build the application for your platform:
# For Windows
npm run build:win
# For macOS
npm run build:mac
# For Linux
npm run build:linux
# Unpacked for all platforms
npm run build:unpackDistribution files will be located in the dist directory.