The Wayback Machine - https://web.archive.org/web/20190416164807/https://github.com/electron/electron
Skip to content
:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci Merge pull request #17507 from electron/chromium-upgrade/75 Apr 3, 2019
.github
atom fix: populate phase of WebMouseWheelEvents generated in webContents.sโ€ฆ Apr 16, 2019
build
buildflags FIXME: disable OSR Feb 14, 2019
chromium_src build: enable gn check for //electron:electron_lib (#17100) Mar 5, 2019
components/pepper_flash chore: fix linking errors on Windows Feb 14, 2019
default_app chore: fix default_app showMessageBox (#17357) Mar 12, 2019
docs-translations update references to renamed i18n repo Mar 2, 2018
docs docs: update guide on MAS entitlements and export compliance (#17695) Apr 16, 2019
lib
native_mate fix: check the result when calling js function (#17443) Mar 20, 2019
npm chore: update @types/node dep (#16174) Dec 21, 2018
patches
script
spec-main
spec
tools refactor: remove js2asar.py and port logic to JS in more readable / Gโ€ฆ Feb 5, 2019
typings
vendor
.clang-format Add clang-format config file. Oct 4, 2016
.dockerignore
.env.example
.eslintrc.json build: Update TypeScript, use @typescript-eslint (#17251) Mar 7, 2019
.gitattributes chore: force patches to be checked out with LF line endings (#14789) Sep 25, 2018
.gitignore
.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
CODE_OF_CONDUCT.md
CONTRIBUTING.md
DEPS
Dockerfile
Dockerfile.arm32v7
Dockerfile.arm64v8
ELECTRON_VERSION
LICENSE fix: update license year (#16287) Jan 5, 2019
README.md
SECURITY.md
appveyor.yml refactor: use mojo for electron internal IPC (#17406) Apr 2, 2019
electron_paks.gni
electron_resources.grd chore: use c++ manifests instead of json Feb 14, 2019
electron_strings.grdp refactor: printing implementation (#15143) Nov 9, 2018
filenames.auto.gni build: auto-generate the browserify step GN inputs (#17626) Apr 3, 2019
filenames.gni refactor: use mojo for electron internal IPC (#17406) Apr 2, 2019
package-lock.json Bump v6.0.0-nightly.20190404 Apr 4, 2019
package.json
tsconfig.default_app.json chore: fix ts config to not complain about extraneous files (#16790) Feb 6, 2019
tsconfig.electron.json
tsconfig.json
tsconfig.spec.json spec: initial spike of main-process based tests Mar 14, 2019
vsts-arm-test-steps.yml build: remove native mksnapshot for arm/arm64 (#17561) Mar 28, 2019
vsts-arm32v7.yml ci: use ubuntu 18.04 for arm testing (#14988) Oct 5, 2018
vsts-arm64v8.yml build: make torque patch more specific for native arm builds (#16992) Feb 18, 2019

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.

You canโ€™t perform that action at this time.