trop[bot] 299756c5b1 chore: update https://cs.chromium.org/ links to https://source.chromium.org/ (#37237) 2 years ago
..
README.md db7c92fd57 test: drop now-empty remote runner (#35343) 2 years ago
azure-vm-setup.md 265474882c docs: Update Branch Name (#31106) 3 years ago
build-instructions-gn.md e15e66f229 docs: add dependencies and troubleshooting section to build-instructions (#35345) 2 years ago
build-instructions-linux.md 08dd38d9be docs: update build dependencies for Fedora (#35024) 2 years ago
build-instructions-macos.md e15e66f229 docs: add dependencies and troubleshooting section to build-instructions (#35345) 2 years ago
build-instructions-windows.md 02949a7e6f docs: update visual studio min version (#36731) 2 years ago
chromium-development.md 299756c5b1 chore: update https://cs.chromium.org/ links to https://source.chromium.org/ (#37237) 2 years ago
clang-tidy.md 36bca3278d docs: fix typos in clang-tidy examples (#29327) 3 years ago
coding-style.md c9fd255093 build: use python3 to lint (#33627) 3 years ago
creating-api.md 62e9ffab9b fix: expose native bindings by process type (#37175) 2 years ago
debugging-on-macos.md 771a8f70da docs: update development-related documentation (#31043) 3 years ago
debugging-on-windows.md 771a8f70da docs: update development-related documentation (#31043) 3 years ago
debugging-with-symbol-server.md 120fd04f7f docs: use automatic link syntax for symbol server link (#37119) 2 years ago
debugging-with-xcode.md 771a8f70da docs: update development-related documentation (#31043) 3 years ago
debugging.md ea4278754c chore: fix spelling errors in multiple files (#34574) 2 years ago
goma.md 771a8f70da docs: update development-related documentation (#31043) 3 years ago
issues.md 1e50f7d2b6 docs: consolidate info docs (#32964) 3 years ago
patches.md 43dbd1bdf8 chore: cleanup whitespace in docs (#26356) 4 years ago
pull-requests.md 600c37160b docs: fix relative link in developer documentation (#32844) 3 years ago
source-code-directory-structure.md db7c92fd57 test: drop now-empty remote runner (#35343) 2 years ago
testing.md db7c92fd57 test: drop now-empty remote runner (#35343) 2 years ago
v8-development.md ecd23bb29b docs: tidy up links (#26292) 4 years ago

README.md

Developing Electron

These guides are intended for people working on the Electron project itself. For guides on Electron app development, see /docs/README.md.

Table of Contents

Getting Started

In order to contribute to Electron, the first thing you'll want to do is get the code.

Electron's build-tools automate much of the setup for compiling Electron from source with different configurations and build targets.

If you would prefer to build Electron manually, see the build instructions.

Once you've checked out and built the code, you may want to take a look around the source tree to get a better idea of what each directory is responsible for. The source code directory structure gives a good overview of the purpose of each directory.

Opening Issues on Electron

For any issue, there are generally three ways an individual can contribute:

  1. By opening the issue for discussion
  2. By helping to triage the issue
    • You can do this either by providing assistive details (a reproducible test case that demonstrates a bug) or by providing suggestions to address the issue.
  3. By helping to resolve the issue
    • This can be done by demonstrating that the issue is not a bug or is fixed; but more often, by opening a pull request that changes the source in electron/electron in a concrete and reviewable manner.

See issues for more information.

Making a Pull Request to Electron

Most pull requests opened against the electron/electron repository include changes to either the C/C++ code in the shell/ folder, the TypeScript code in the lib/ folder, the documentation in docs/, or tests in the spec/ folder.

See pull requests for more information.

If you want to add a new API module to Electron, you'll want to look in creating API.

Governance

Electron has a fully-fledged governance system that oversees activity in Electron and whose working groups are responsible for areas like APIs, releases, and upgrades to Electron's dependencies including Chromium and Node.js. Depending on how frequently and to what end you want to contribute, you may want to consider joining a working group.

Details about each group and their responsibilities can be found in the governance repo.

Patches in Electron

Electron is built on two major upstream projects: Chromium and Node.js. Each of these projects has several of their own dependencies, too. We try our best to use these dependencies exactly as they are but sometimes we can't achieve our goals without patching those upstream dependencies to fit our use cases.

As such, we maintain a collection of patches as part of our source tree. The process for adding or altering one of these patches to Electron's source tree via a pull request can be found in patches.

Debugging

There are many different approaches to debugging issues and bugs in Electron, many of which are platform specific.

For an overview of information related to debugging Electron itself (and not an app built with Electron), see debugging.