No Description

John Kleinschmidt 1c509c4743 Use VS2017 15.4.5 for Chromium 66 6 years ago
.circleci c0dfc4b2eb ci: [gn] build 32-bit node modules on 32-bit linux (#14021) 6 years ago
.github 1c879870ee chore: add a Mac App Store Private API Rejection template (#14009) 6 years ago
atom b9490177da Revert "[WIP] refactor: (Part I) make the ownership of URLRequestContextGetter more clear (#13956)" 6 years ago
brightray b9490177da Revert "[WIP] refactor: (Part I) make the ownership of URLRequestContextGetter more clear (#13956)" 6 years ago
build 32f456de07 chore: [gn] run 'gn format' over build/node/BUILD.gn 6 years ago
chromium_src d6af3bfcd2 chore: fix more chromium-style errors in windows code (#13487) 6 years ago
default_app c8030a0f2a feat: support chrome:// URLs in default_app (#13575) 6 years ago
docs c0959bd534 refactor: add 'npm run bootstrap', 'npm run build' (#14034) 6 years ago
docs-translations e9de194b89 update references to renamed i18n repo 7 years ago
lib b785f45852 fix: override fs.realpathSync.native and fs.realpath.native (#14031) 6 years ago
native_mate 91172d6387 build: [gn] move native_mate build config to native_mate dir (#13706) 6 years ago
npm eb79ad4dab fix: handle SIGINT and SIGTERM from the Electron CLI helper (#13867) 6 years ago
script 00b2d94785 ci: start the dbus mock server in GN CI 6 years ago
spec 828e317360 Fix flaky sandbox tests 6 years ago
tools a6bc8030ea build: [gn win] fix path names in js2asar 6 years ago
vendor 3ac8aad495 chore: bump libcc (#14071) 6 years ago
.clang-format a846088eac Add clang-format config file. 8 years ago
.dockerignore 06481b5630 Add testing for arm, arm64 and ia32 linux builds 7 years ago
.env.example 4f9b8d5d5a clarify purpose of .env.example 6 years ago
.gitignore 04855bc499 Merge pull request #12921 from electron/commit-package-lock 7 years ago
.gitmodules daa64e21f6 rename back to expected values 6 years ago
.remarkrc 2441d51093 add remark lint to ensure fenced codeblocks are formatted properly. 7 years ago
.travis.yml 136857952e Add arm64 task in travis ci 7 years ago
BUILD.gn e22a80b210 chore: [gn] run 'gn format' over BUILD.gn 6 years ago
CODE_OF_CONDUCT.md 1f8de33e75 Change Contact Emails (#12278) 7 years ago
CONTRIBUTING.md e3dfffb77b add docs/development/README.md (#12373) 7 years ago
DEPS 3ac8aad495 chore: bump libcc (#14071) 6 years ago
Dockerfile 67558d65a6 Use Node.js 10 for CI builds 6 years ago
Dockerfile.arm64 5f48f91d94 Newer CI images (#12188) 7 years ago
Dockerfile.arm64v8 ed1c84445c Update CI to use Node 8 7 years ago
Dockerfile.armv7 ed1c84445c Update CI to use Node 8 7 years ago
Dockerfile.circleci 67558d65a6 Use Node.js 10 for CI builds 6 years ago
LICENSE 46121da765 Update license year 7 years ago
README.md 5d3692c16f Update installation instructions 7 years ago
SECURITY.md 1f8de33e75 Change Contact Emails (#12278) 7 years ago
appveyor-gn.yml 1c509c4743 Use VS2017 15.4.5 for Chromium 66 6 years ago
appveyor.yml 1c509c4743 Use VS2017 15.4.5 for Chromium 66 6 years ago
common.gypi 951aa83bdf Disable node options in node config (#13311) 6 years ago
electron.gyp adaa32003d refactor: DwmGetColorizationColor does not have to be dynamically resolved 6 years ago
electron_paks.gni ae29d562eb build: [gn] add //ui/strings:app_locale_settings to locale pak 6 years ago
features.gypi 5e2406081e build: move pepper flash behind feature flag 6 years ago
filenames.gypi b9490177da Revert "[WIP] refactor: (Part I) make the ownership of URLRequestContextGetter more clear (#13956)" 6 years ago
package-lock.json 19cb5bad94 feat: Add creationTime function to process (#13542) 6 years ago
package.json 2ac3d89279 fix: lint js and docs alongside clang-format (#14044) 6 years ago
toolchain.gypi 8f00240c73 chrome style plugin: remove check-auto-raw-pointer option 6 years ago
vsts-gn.yml 6e224df00e [wip] ci: add Mac support to VSTS build 6 years ago
vsts.yml 1c70a1cccd Make sure artifacts are properly saved for nightly release builds 6 years ago

README.md

Electron Logo

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

:memo: 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 [email protected].

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

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.