You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
dependabot[bot] ad604a82bb
chore: bump electron from 37.2.3 to 37.2.4 (#991)
3 days ago
.github ci: add new issues and pull requests to project board (#862) 2 years ago
.gitignore Add gitignore 10 years ago
LICENSE.md Change license to CC0 10 years ago
README.md chore: Update README.md to reflect rename (#976) 2 months ago
index.html CORS: Allow inline CSS and style attributes 4 years ago
main.js chore: use node prefix with path module (#853) 2 years ago
package-lock.json chore: bump electron from 37.2.3 to 37.2.4 (#991) 3 days ago
package.json chore: bump electron from 37.2.3 to 37.2.4 (#991) 3 days ago
preload.js fix: clarifies what preload script runs before (#892) 1 year ago
renderer.js docs: update comments to reflect new defaults (#643) 3 years ago
styles.css feat: add default css file (#533) 4 years ago

README.md

minimal-repro

Quickly create and share examples of Electron app behaviors or bugs.

[!NOTE] This repro was renamed from electron-quick-start to clarify its purpose as a repro template. If you're looking to boostrap a new Electron app, check out the Electron Forge docs instead to get started!

Creating a minimal reproduction (or "minimal repro") is essential when troubleshooting Electron apps. By stripping away everything except the code needed to demonstrate a specific behavior or bug, it becomes easier for others to understand, debug, and fix issues. This focused approach saves time and ensures that everyone involved is looking at exactly the same problem without distractions.

A basic Electron application contains:

  • package.json - Points to the app's main file and lists its details and dependencies.
  • main.js - Starts the app and creates a browser window to render HTML. This is the app's main process.
  • index.html - A web page to render. This is the app's renderer process.
  • preload.js - A content script that runs before the renderer process loads.

You can learn more about each of these components in depth within the Tutorial.

To Use

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/electron/minimal-repro
# Go into the repository
cd minimal-repro
# Install dependencies
npm install
# Run the app
npm start

Note: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.

Resources for Learning Electron

License

CC0 1.0 (Public Domain)