:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Revert "ci: use config version 2.1 on CircleCI (#15665)" (#16304) Jan 7, 2019
.github chore: add link to clerk readme to PR checklist (#16253) Jan 3, 2019
.vsts chore: add GN linting (#14678) Oct 3, 2018
atom feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
build build: fix native_mksnapshot build (#15770) Nov 21, 2018
buildflags feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
chromium_src feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
components/pepper_flash fix: linking pepper flash on Linux Oct 9, 2018
default_app chore: add 'use strict' to default app sources (#16346) Jan 10, 2019
docs-translations update references to renamed i18n repo Mar 2, 2018
docs feat: add `fileMenu` / `viewMenu` / `appMenu` roles (#16328) Jan 10, 2019
lib feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
manifests refactor: printing implementation (#15143) Nov 9, 2018
native_mate chore: fix v8 deprecation warnings Dec 3, 2018
npm chore: update @types/node dep (#16174) Dec 21, 2018
patches feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
script feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
spec feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
tools feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
vendor chore: temporarily use submodule and gn DEPS for requests/boto Oct 6, 2018
.clang-format Add clang-format config file. Oct 4, 2016
.dockerignore ci: migrate libcc's Dockerfile to electron and update it (#14786) Sep 25, 2018
.env.example clarify purpose of .env.example Jul 11, 2018
.eslintrc.json chore(eslint): add extension to .eslintrc file (#15020) Oct 8, 2018
.gitattributes chore: force patches to be checked out with LF line endings (#14789) Sep 25, 2018
.gitignore feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
.gitmodules chore: temporarily use submodule and gn DEPS for requests/boto Oct 6, 2018
.remarkrc add remark lint to ensure fenced codeblocks are formatted properly. Nov 20, 2017
BUILD.gn feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
CODE_OF_CONDUCT.md Change Contact Emails (#12278) Mar 14, 2018
CONTRIBUTING.md add docs/development/README.md (#12373) Mar 20, 2018
DEPS feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
Dockerfile ci: migrate libcc's Dockerfile to electron and update it (#14786) Sep 25, 2018
Dockerfile.arm32v7 ci: use ubuntu 18.04 for arm testing (#14988) Oct 5, 2018
Dockerfile.arm64v8 ci: Trigger an arm test on VSTS after CircleCI build (#14898) Oct 4, 2018
ELECTRON_VERSION feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
LICENSE fix: update license year (#16287) Jan 5, 2019
README.md docs: add Azure Pipelines status (#15455) Oct 29, 2018
SECURITY.md Change Contact Emails (#12278) Mar 14, 2018
appveyor.yml build: use different directory for generated breakpad symbols (#15716) Nov 14, 2018
electron_paks.gni feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
electron_resources.grd feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
electron_strings.grdp refactor: printing implementation (#15143) Nov 9, 2018
filenames.gni feat: Upgrade to Chromium 71.0.3578.98 (#15966) Jan 12, 2019
package-lock.json Revert "Bump v5.0.0-nightly.20190111" Jan 11, 2019
package.json Revert "Bump v5.0.0-nightly.20190111" Jan 11, 2019
vsts-arm-test-steps.yml ci: Renable ffmpeg and mksnapshot tests on Azure Devops (#15800) Nov 30, 2018
vsts-arm32v7.yml ci: use ubuntu 18.04 for arm testing (#14988) Oct 5, 2018
vsts-arm64v8.yml ci: Trigger an arm test on VSTS after CircleCI build (#14898) Oct 4, 2018
vsts.yml ci: Cleanup build dirs on Azure Devops (#16047) Dec 13, 2018

README.md

Electron Logo

CircleCI Build Status AppVeyor Build Status Azure Pipelines Build Status devDependency Status Join the Electron Community on Slack

📝 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 [--save-exact]

The --save-exact flag is recommended for Electron prior to version 2, as it does not follow semantic versioning. As of version 2.0.0, Electron follows semver, so you don't need --save-exact flag. For info on how to manage Electron versions in your apps, see Electron versioning.

For more installation options and troubleshooting tips, see installation.

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.

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.