GitHunt
FU

furmanjmx/electron

Build cross platform desktop apps with JavaScript, HTML, and CSS

Electron Logo

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

๐Ÿ“ Available Translations: ๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡น๐Ÿ‡ผ ๐Ÿ‡ง๐Ÿ‡ท ๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ‡ฐ๐Ÿ‡ท ๐Ÿ‡ฏ๐Ÿ‡ต ๐Ÿ‡ท๐Ÿ‡บ ๐Ÿ‡ซ๐Ÿ‡ท ๐Ÿ‡น๐Ÿ‡ญ ๐Ÿ‡ณ๐Ÿ‡ฑ ๐Ÿ‡น๐Ÿ‡ท ๐Ÿ‡ฎ๐Ÿ‡ฉ ๐Ÿ‡บ๐Ÿ‡ฆ ๐Ÿ‡จ๐Ÿ‡ฟ ๐Ÿ‡ฎ๐Ÿ‡น.
View these docs in other languages at electron/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 electron@github.com.

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 as Electron does not follow semantic
versioning. 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/electron-i18n.

Community

You can ask questions and interact with the community in the following
locations:

Check out awesome-electron
for a community maintained list of useful example apps, tools and resources.

License

MIT

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

Languages

C++65.6%JavaScript20.2%Objective-C++7.3%Python5.1%Objective-C1.2%HTML0.4%C0.1%Shell0.1%PowerShell0.0%
MIT License
Created December 20, 2017
Updated December 20, 2017
furmanjmx/electron | GitHunt