:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
Перейти к файлу
trop[bot] ff024cd396
chore: fixup reclient read only access on forks (#44310)
chore: fixup reclient read only access on forks (#44280)

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
2024-10-18 12:05:31 -04:00
.devcontainer build: remove CircleCI (#42844) (#42909) 2024-07-15 16:00:20 -07:00
.github chore: fixup reclient read only access on forks (#44310) 2024-10-18 12:05:31 -04:00
.husky
build build: add import/order eslint rule (#44108) 2024-10-03 15:21:54 -07:00
buildflags
chromium_src refactor: run Windows `SelectFileDialog` out of process (#42825) 2024-07-09 19:03:13 +02:00
default_app build: add import/order eslint rule (#44108) 2024-10-03 15:21:54 -07:00
docs build: update some build dependencies (#44071) 2024-10-01 13:14:08 -07:00
lib build: add import/order eslint rule (#44108) 2024-10-03 15:21:54 -07:00
npm build: add import/order eslint rule (#44108) 2024-10-03 15:21:54 -07:00
patches chore: cherry-pick 3 changes from 1-M129 (#44255) 2024-10-18 09:52:41 -04:00
script build: remove dead code in prepare release script (#44288) 2024-10-17 10:21:34 -04:00
shell fix: ensure `utilityProcess` only emits one 'exit' event (#44267) 2024-10-16 15:04:26 +02:00
spec fix: ensure `utilityProcess` only emits one 'exit' event (#44267) 2024-10-16 15:04:26 +02:00
spec-chromium
typings build: update some build dependencies (#44071) 2024-10-01 13:14:08 -07:00
.clang-format
.clang-tidy
.dockerignore
.env.example build: remove CircleCI (#42844) (#42909) 2024-07-15 16:00:20 -07:00
.eslintrc.json build: add import/order eslint rule (#44108) 2024-10-03 15:21:54 -07:00
.git-blame-ignore-revs
.gitattributes chore: fix `npm run lint` not working on Windows (#42906) 2024-07-16 12:32:07 +02:00
.gitignore
.markdownlint.autofix.json
.markdownlint.json build: add Markdown lint check for unescaped angle brackets (#41753) 2024-04-04 14:50:35 -04:00
.nvmrc
.remarkrc
BUILD.gn fix: replace deprecated libnotify API calls (#43982) 2024-09-26 17:08:12 -05:00
CODE_OF_CONDUCT.md docs: ensure all links are on a single line (#42298) 2024-05-29 11:41:15 +02:00
CONTRIBUTING.md
DEPS chore: bump node to v20.18.0 (31-x-y) (#44115) 2024-10-09 09:53:12 -04:00
LICENSE
README.md build: remove CircleCI (#42844) (#42909) 2024-07-15 16:00:20 -07:00
SECURITY.md
appveyor-bake.yml
appveyor-woa.yml chore: fixup reclient read only access on forks (#44310) 2024-10-18 12:05:31 -04:00
appveyor.yml chore: fixup reclient read only access on forks (#44310) 2024-10-18 12:05:31 -04:00
electron_paks.gni
electron_resources.grd
filenames.auto.gni feat: expose system preferences to utility process (#42598) 2024-06-20 15:33:21 -04:00
filenames.gni chore: remove unused KeyWeakMap JS bindings (#43144) 2024-07-31 18:56:54 -05:00
filenames.hunspell.gni
filenames.libcxx.gni chore: bump chromium to 125.0.6412.0 (main) (#41610) 2024-04-15 18:10:32 -04:00
filenames.libcxxabi.gni
js2c_toolchain.gni
package.json build: update some build dependencies (#44071) 2024-10-01 13:14:08 -07:00
tsconfig.default_app.json
tsconfig.electron.json
tsconfig.json build: update some build dependencies (#44071) 2024-10-01 13:14:08 -07:00
tsconfig.script.json
tsconfig.spec.json
yarn.lock build: update some build dependencies (#44071) 2024-10-01 13:14:08 -07:00

README.md

Electron Logo

GitHub Actions Build Status AppVeyor Build Status Electron Discord Invite

📝 Available Translations: 🇨🇳 🇧🇷 🇪🇸 🇯🇵 🇷🇺 🇫🇷 🇺🇸 🇩🇪. View these docs in other languages on our Crowdin project.

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 Visual Studio Code 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.

Platform support

Each Electron release provides binaries for macOS, Windows, and Linux.

  • macOS (Catalina and up): Electron provides 64-bit Intel and ARM binaries for macOS. Apple Silicon support was added in Electron 11.
  • Windows (Windows 10 and up): Electron provides ia32 (x86), x64 (amd64), and arm64 binaries for Windows. Windows on ARM support was added in Electron 5.0.8. Support for Windows 7, 8 and 8.1 was removed in Electron 23, in line with Chromium's Windows deprecation policy.
  • Linux: The prebuilt binaries of Electron are built on Ubuntu 20.04. They have also been verified to work on:
    • Ubuntu 18.04 and newer
    • Fedora 32 and newer
    • Debian 10 and newer

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('node:child_process')

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

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

Mirrors

See the Advanced Installation Instructions to learn how to use a custom mirror.

Documentation translations

We crowdsource translations for our documentation via Crowdin. We currently accept translations for Chinese (Simplified), French, German, Japanese, Portuguese, Russian, and Spanish.

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 on the Community page.

License

MIT

When using Electron logos, make sure to follow OpenJS Foundation Trademark Policy.