No description
Find a file
2022-01-18 12:06:22 -05:00
.circleci build: add CI path-filtering for docs-only changes (#31741) 2021-11-29 18:09:07 -05:00
.devcontainer
.github docs: fix typo in bug report issue template (#32208) 2022-01-03 10:35:19 +01:00
.husky
build chore: bump chromium to 99.0.4767.0 (main) (#31986) 2022-01-10 17:31:39 -05:00
buildflags
chromium_src chore: bump chromium to 99.0.4767.0 (main) (#31986) 2022-01-10 17:31:39 -05:00
default_app refactor: use process type specific electron imports in default_app (#32097) 2021-12-06 11:44:41 +09:00
docs Clarify will-redirect event doc (#32093) 2022-01-18 12:06:22 -05:00
lib fix: will-attach-webview handler modifying params.instanceId does not break <webview> (#32386) 2022-01-12 16:41:20 +09:00
npm fix: Allow npm_config_arch override on mac (#32266) 2022-01-07 17:53:15 +09:00
patches fix: re-enable PartitionAlloc on macOS (#32442) 2022-01-17 16:46:33 +09:00
script fix: Support running git-[im,ex]port-patches with Python3 too (#32303) 2022-01-10 16:47:55 -05:00
shell Bump v18.0.0-nightly.20220118 2022-01-18 05:01:15 -08:00
spec feat: expose blowfish cipher family (#32356) 2022-01-12 10:44:28 -08:00
spec-main fix: check for maximized window before unmaximizings (#32438) 2022-01-17 16:47:14 +09:00
typings fix: will-attach-webview handler modifying params.instanceId does not break <webview> (#32386) 2022-01-12 16:41:20 +09:00
.clang-format
.dockerignore
.env.example
.eslintrc.json
.gitattributes
.gitignore
.markdownlint.autofix.json
.markdownlint.json
.nvmrc
.remarkrc
appveyor.yml
azure-pipelines-arm.yml
azure-pipelines-woa.yml
BUILD.gn fix: re-enable PartitionAlloc on macOS (#32442) 2022-01-17 16:46:33 +09:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md docs: Update Branch Name (#31106) 2021-09-27 11:35:56 -04:00
DEPS chore: bump node to v16.13.2 (main) (#32418) 2022-01-11 10:12:30 -06:00
electron_paks.gni
electron_resources.grd
electron_strings.grdp fix: add resource strings for file selection (#31881) 2021-11-17 14:13:49 -08:00
ELECTRON_VERSION Bump v18.0.0-nightly.20220118 2022-01-18 05:01:15 -08:00
filenames.auto.gni feat: remove nativeWindowOpen option (#29405) 2022-01-06 09:28:03 -08:00
filenames.gni fix: re-enable PartitionAlloc on macOS (#32442) 2022-01-17 16:46:33 +09:00
filenames.hunspell.gni
filenames.libcxx.gni
filenames.libcxxabi.gni
LICENSE
package.json Bump v18.0.0-nightly.20220118 2022-01-18 05:01:15 -08:00
README.md docs: change China mirror domain to npmmirror.com (#32076) 2021-12-06 11:28:41 +09:00
SECURITY.md docs: Update Branch Name (#31106) 2021-09-27 11:35:56 -04:00
tsconfig.default_app.json
tsconfig.electron.json
tsconfig.json
tsconfig.script.json
tsconfig.spec.json
vsts-arm-test-steps.yml
vsts-arm32v7.yml
vsts-arm64v8.yml
yarn.lock build: pin colors to v1.4.0 in package.json (#32420) 2022-01-11 11:24:54 -08:00

Electron Logo

CircleCI Build Status AppVeyor Build Status Electron Discord Invite

📝 Available Translations: 🇨🇳 🇧🇷 🇪🇸 🇯🇵 🇷🇺 🇫🇷 🇺🇸 🇩🇪. View these docs in other languages at electron/i18n.

The Electron framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on Node.js and Chromium and is used by the Atom editor and many other apps.

Follow @ElectronJS on Twitter for important announcements.

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to coc@electronjs.org.

Installation

To install prebuilt Electron binaries, use npm. The preferred method is to install Electron as a development dependency in your app:

npm install electron --save-dev

For more installation options and troubleshooting tips, see installation. For info on how to manage Electron versions in your apps, see Electron versioning.

Quick start & Electron Fiddle

Use Electron Fiddle to build, run, and package small Electron experiments, to see code examples for all of Electron's APIs, and to try out different versions of Electron. It's designed to make the start of your journey with Electron easier.

Alternatively, clone and run the electron/electron-quick-start repository to see a minimal Electron app in action:

git clone https://github.com/electron/electron-quick-start
cd electron-quick-start
npm install
npm start

Resources for learning Electron

Programmatic usage

Most people use Electron from the command line, but if you require electron inside your Node app (not your Electron app) it will return the file path to the binary. Use this to spawn Electron from Node scripts:

const electron = require('electron')
const proc = require('child_process')

// will print something similar to /Users/maf/.../Electron
console.log(electron)

// spawn Electron
const child = proc.spawn(electron)

Mirrors

Documentation Translations

Find documentation translations in electron/i18n.

Contributing

If you are interested in reporting/fixing issues and contributing directly to the code base, please see CONTRIBUTING.md for more information on what we're looking for and how to get started.

Community

Info on reporting bugs, getting help, finding third-party tools and sample apps, and more can be found in the support document.

License

MIT

When using the Electron or other GitHub logos, be sure to follow the GitHub logo guidelines.