/ Home
Windows and macOS Setup
Note: Only for macOS users
Install Homebrew (if not already installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Check Node.js
node --version
npm --version
- Create a project folder
mkdir electron-app
cd electron-app
- Initialize the Node.js project
npm init -y
- Install Electron
npm install --save-dev electron
npx electron --version
- Run your Electron application
npm start