├── .gitattributes ├── .github ├── funding.yml └── pull_request_template.md ├── .editorconfig ├── electron-logo.svg ├── contributing.md ├── code-of-conduct.md ├── license └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: sindresorhus 2 | open_collective: sindresorhus 3 | patreon: sindresorhus 4 | custom: https://sindresorhus.com/donate 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | **By submitting this pull request, I promise I have read the [contributing guidelines](https://github.com/sindresorhus/awesome-electron/blob/master/contributing.md) twice and ensured my submission follows it. I realize not doing so wastes the maintainers' time that they could have spent making the world better. 🖖** 2 | -------------------------------------------------------------------------------- /electron-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms. 4 | 5 | --- 6 | 7 | Ensure your pull request adheres to the following guidelines: 8 | 9 | - **The pull request should have a useful title and include a link to the thing you're submitting and why it should be included.** 10 | - Don't open a Draft / WIP pull request while you work on the guidelines. A pull request should be 100% ready and should adhere to all the guidelines when you open it. 11 | - If you just created something, wait at least 30 days before submitting. 12 | - The project repo should have at least 40 stars. 13 | - Search previous suggestions before making a new one, as yours may be a duplicate. 14 | - Boilerplates are not accepted as most boilerplates are too opinionated and low-quality and I don't have time to comment on everything they need to improve. 15 | - If you're submitting a closed source app, include evidence of it being built with Electron. 16 | - The "Closed Source" section has a very high bar for acceptance. You're a lot more likely to get accepted if you link to a blog post on how you built the app. Don't worry if your submission is declined, you can still submit your app to the [official Electron apps list](https://electronjs.org/apps). 17 | - Submitted open source apps should have a English readme, screenshot of the app in the readme, and a binary for at least one OS, preferably macOS, Linux and Windows. 18 | - Submitted packages should be tested and documented. 19 | - Make an individual pull request for each suggestion. 20 | - Use the following format: `[title](link) - Description.` 21 | - Additions should be added to the bottom of the relevant section. 22 | - Keep descriptions short and simple, but descriptive. 23 | - Start the description with a capital and end with a full stop/period. 24 | - Don't mention `Electron` in the description as it's implied. 25 | - Don't start the description with `A` or `An`. 26 | - Check your spelling and grammar. 27 | - Make sure your text editor is set to remove trailing whitespace. 28 | - New categories or improvements to the existing categorization are welcome, but should be done in a separate pull request. 29 | 30 | Thank you for your suggestion! 31 | 32 | ### Updating your PR 33 | 34 | A lot of times, making a PR adhere to the standards above can be difficult. If the maintainers notice anything that we'd like changed, we'll ask you to edit your PR before we merge it. If you're not sure how to do that, [here is a guide](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) on the different ways you can update your PR so that we can merge it. 35 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at sindresorhus@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Awesome Electron [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | [](https://electronjs.org) 4 | 5 | > Useful resources for creating apps with [Electron](https://electronjs.org) 6 | 7 | Electron is an open-source framework for creating desktop apps using web technologies. It combines the Chromium rendering engine and the Node.js runtime. 8 | 9 | **You can now [discuss and ask Electron-related questions](https://github.com/sindresorhus/awesome-electron/discussions) right in this repo.** 10 | 11 |
12 | 13 | --- 14 | 15 |
16 |

17 |

18 | 19 | My open source work is supported by the community 20 | 21 |

22 | Special thanks to: 23 |
24 |
25 | 26 | 27 | 28 |
29 |
30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | Doppler 38 |
39 | All your environment variables, in one place 40 |
41 | Stop struggling with scattered API keys, hacking together home-brewed tools, 42 |
43 | and avoiding access controls. Keep your team and servers in sync with Doppler. 44 |
45 |
46 |

47 |
48 | 49 | --- 50 | 51 |
52 | 53 | ## Contents 54 | 55 | - [Apps](#apps) 56 | - [Boilerplates](#boilerplates) 57 | - [Tools](#tools) 58 | - [Components](#components) 59 | - [Documentation](#documentation) 60 | - [Articles](#articles) 61 | - [Books](#books) 62 | - [Videos](#videos) 63 | - [Podcasts](#podcasts) 64 | - [Community](#community) 65 | - [Related](#related) 66 | 67 | ## Apps 68 | 69 | Made with Electron. 70 | 71 | ### Open Source 72 | 73 | ###### Featured 74 | 75 | - [Beaker](https://github.com/beakerbrowser/beaker) - Browser with peer-to-peer web protocols. 76 | - [Hyper](https://github.com/zeit/hyper) - Terminal. 77 | - [WebTorrent](https://github.com/feross/webtorrent-app) - Streaming torrent client. 78 | - [Kap](https://github.com/wulkano/kap) - Screen recorder with GIF support. 79 | - [Min](https://github.com/minbrowser/min) - Minimal web browser. 80 | - [SpaceRadar](https://github.com/zz85/space-radar) - Interactive disk space and memory visualization. 81 | - [Atom](https://github.com/atom/atom) - Code editor. 82 | - [Visual Studio Code](https://github.com/Microsoft/vscode) - Cross-platform IDE. 83 | - [Wexond](https://github.com/sential/wexond) - Web browser with material UI and extensions API. 84 | 85 | ###### Other 86 | 87 | - [Git-it](https://github.com/jlord/git-it-electron) - Teaches you Git and GitHub. 88 | - [Caprine](https://github.com/sindresorhus/caprine) - Unofficial Facebook Messenger app. 89 | - [Simplenote](https://github.com/Automattic/simplenote-electron) - Note keeper. 90 | - [nuTorrent](https://github.com/LeeChSien/nuTorrent) - BitTorrent client. 91 | - [Abricotine](https://github.com/brrd/Abricotine) - Markdown editor with inline preview. 92 | - [Medis](https://github.com/luin/medis) - Redis database management. 93 | - [Kakapo](https://github.com/bluedaniel/kakapo-app) - Ambient sound mixer for relaxation or productivity. 94 | - [SmartMirror](https://github.com/evancohen/smart-mirror) - Voice controlled smart mirror. 95 | - [Koko](https://github.com/hachibasu/koko) - IRC client. 96 | - [KeeWeb](https://github.com/keeweb/keeweb) - Unofficial KeePass app. 97 | - [Gitify](https://github.com/manosim/gitify) - GitHub notifications in your menubar. 98 | - [Friends](https://github.com/moose-team/friends) - P2P chat. 99 | - [Cumulus](https://github.com/gillesdemey/Cumulus) - SoundCloud player in your menubar. 100 | - [Kitematic](https://github.com/docker/kitematic) - Docker container management. 101 | - [FatFileFinder](https://github.com/pwambach/fat-file-finder) - Find large files on your machine. 102 | - [ScreenCat](https://github.com/maxogden/screencat) - Screen sharing & remote collaboration. 103 | - [Mapbox Studio](https://github.com/mapbox/mapbox-studio) - Map designer. 104 | - [LevelUI](https://github.com/hij1nx/levelui) - LevelDB management. 105 | - [Vmd](https://github.com/yoshuawuyts/vmd) - Preview Markdown files. 106 | - [Kyoku](https://github.com/cheeaun/kyoku) - Displays current iTunes song. 107 | - [GReader](https://github.com/Nekle/greader) - Collect and read offline readme files of GitHub repos. 108 | - [Leanote](https://github.com/leanote/desktop-app) - Cloud notepad. 109 | - [Snapper](https://github.com/pt2121/Snapper) - Screen capturing & recording for Android devices. 110 | - [Imagemin](https://github.com/imagemin/imagemin-app) - Minify images. 111 | - [We Build SG](https://github.com/webuildsg/osx) - Upcoming events & recently updated repos from webuild.sg. 112 | - [Piglet](https://github.com/jenslind/piglet) - Run Grunt tasks from your menubar. 113 | - [Yoda](https://github.com/whoisandie/yoda) - Browse and download YouTube videos. 114 | - [Loop Drop](https://github.com/mmckegg/loop-drop-app) - MIDI looper and synth for live electronic music performances. 115 | - [Toby](https://github.com/frankhale/toby) - YouTube player. 116 | - [Kaku](https://github.com/EragonJ/Kaku) - Music player. 117 | - [Markn](https://github.com/minodisk/markn) - Markdown viewer. 118 | - [Shiba](https://github.com/rhysd/Shiba) - Live Markdown preview with linting. 119 | - [Yays](https://github.com/Bahlaouane-Hamza/Yays) - YouTube music player in your menubar. 120 | - [Monu](https://github.com/maxogden/monu) - Process monitoring. 121 | - [DevDocs](https://github.com/egoist/devdocs-app) - Unofficial DevDocs.io app. 122 | - [google-music-electron](https://github.com/twolfson/google-music-electron) - Unofficial Google music app. 123 | - [Pomodoro](https://github.com/G07cha/pomodoro) - Timer based on the Pomodoro Technique. 124 | - [Sia-UI](https://gitlab.com/NebulousLabs/Sia-UI) - Decentralized file storage system based on cryptocurrency technology. 125 | - [MarkRight](https://github.com/dvcrn/markright) - GitHub flavored Markdown editor with live preview. 126 | - [Mongotron](https://github.com/officert/mongotron) - MongoDB management tool. 127 | - [Colonizers](https://github.com/colonizers/colonizers-desktop) - "Catan" inspired board game. 128 | - [Eintopf](https://github.com/mazehall/eintopf) - Manage development projects with Docker. 129 | - [WhatsDesktop](https://github.com/mawie81/whatsdesktop) - Unofficial WhatsApp app. 130 | - [Sqlectron](https://github.com/sqlectron/sqlectron-gui) - SQL client. 131 | - [docker-indicator](https://github.com/khornberg/docker-indicator) - Unofficial Docker menubar app. 132 | - [Light Table](https://github.com/LightTable/LightTable) - Code editor with instant feedback. 133 | - [Tubehead](https://github.com/makotot/Tubehead) - YouTube music player in your menubar. 134 | - [Google Play Music Desktop Player](https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-) - Unofficial Google Play Music app. 135 | - [Chrome DevTools](https://github.com/auchenberg/chrome-devtools-app) - Chrome DevTools packaged as an app. 136 | - [Yeobara](https://github.com/yeobara/yeobara-desktop) - Meetup check-in with beacon. 137 | - [Proton](https://github.com/steventhanna/proton) - Markdown editor with live preview. 138 | - [James](https://github.com/uxebu/james) - HTTP proxy to view and intercept browser requests. 139 | - [DTCP](https://github.com/alchen/DTCP) - Twitter client. 140 | - [Inbox](https://github.com/fgnass/inbox-app) - Unofficial Google Inbox app. 141 | - [tweet-rec](https://github.com/midnightSuyama/tweet-rec) - Tweet recording player. 142 | - [Snippet Bar](https://github.com/teesloane/snippet-bar) - Copy-paste & re-use text snippets in your menubar. 143 | - [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Unofficial WeChat app. 144 | - [dida](https://github.com/xwartz/dida) - Add tasks to TickTick (滴答清单). 145 | - [FromScratch](https://github.com/kilian/fromscratch) - Autosaving scratchpad. 146 | - [Hawkpass](https://github.com/kalpetros/hawkpass) - Password generator. 147 | - [Gokotta](https://github.com/Zhangdroid/Gokotta) - Music player. 148 | - [Shake](https://github.com/lumios/shake) - Japanese Earthquake Early Warning Notifier. 149 | - [Fog](https://github.com/vitorgalvao/fog) - Unofficial Overcast podcast app. 150 | - [Wmail](https://github.com/Thomas101/wmail) - Unofficial Gmail & Google Inbox app. 151 | - [Boostnote](https://github.com/BoostIO/Boostnote) - Markdown note & code snippet app for developers. 152 | - [Before Dawn](https://github.com/muffinista/before-dawn) - Screensaver tool. 153 | - [Active Collab](https://github.com/nurtext/active-collab-desktop) - Unofficial Active Collab app. 154 | - [Hain](https://github.com/appetizermonster/hain) - Launcher for Windows. 155 | - [Catify](https://github.com/MeoBeoI/Catify) - Utility for Spotify. 156 | - [Minira](https://github.com/jenslind/minira) - JIRA issues in your menubar. 157 | - [Ansel](https://github.com/m0g/ansel) - Image organizer. 158 | - [Build Checker App](https://github.com/willmendesneto/build-checker-app) - Check CI-server build statuses. 159 | - [Tockler](https://github.com/MayGo/tockler) - Tracks your time. 160 | - [Mattermost](https://github.com/mattermost/desktop) - Mattermost client. 161 | - [PupaFM](https://github.com/xwartz/PupaFM) - DoubanFM music player. 162 | - [MediumDesk](https://github.com/sivragav/mediumdesk) - Unofficial Medium app. 163 | - [Lightgallery](https://github.com/sachinchoolur/lightgallery-desktop) - Image viewer. 164 | - [Crypter](https://github.com/HR/Crypter) - Secure encryption client. 165 | - [YakYak](https://github.com/yakyak/yakyak) - Unofficial Google Hangouts app. 166 | - [Museeks](https://github.com/KeitIG/museeks) - Music player. 167 | - [VOX](https://github.com/fresk-nc/VOX) - Unofficial VOX music player. 168 | - [Sabaki](https://github.com/SabakiHQ/Sabaki) - Go/Baduk/Weiqi board. 169 | - [Marky](https://github.com/vesparny/marky) - Markdown editor. 170 | - [Deco](https://github.com/decosoftware/deco-ide) - React Native IDE. 171 | - [Toshocat](https://github.com/tofuness/Toshocat) - Anime/Manga Progress Tracker. 172 | - [iStats](https://github.com/ningt/iStats) - CPU and memory stats on your menubar. 173 | - [Wire](https://github.com/wireapp/wire-desktop) - Messenger and calling app. 174 | - [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram app. 175 | - [Moonview](https://github.com/teesloane/moonview) - Ambient notepad. 176 | - [DBGlass](https://github.com/web-pal/DBGlass) - PostgreSQL client. 177 | - [Slide Beacon](https://github.com/dermike/slide-beacon-app) - Physical web beacon broadcast. 178 | - [Rambox](https://github.com/saenzramiro/rambox) - Chat and email app that combines multiple services like Discord, Hangouts, Gmail and Outlook. 179 | - [Extraterm](https://github.com/sedwards2009/extraterm) - Terminal. 180 | - [Materialette](https://github.com/mike-schultz/materialette) - Material design color palette in your menubar. 181 | - [Dext](https://github.com/vutran/dext) - Launcher. 182 | - [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Pushbullet client. 183 | - [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe app. 184 | - [ndm](https://github.com/720kb/ndm) - npm desktop manager. 185 | - [GIFBar](https://github.com/dcrousso/GIFBar) - Search GIFs in your menubar. 186 | - [Stacer](https://github.com/oguzhaninan/Stacer) - Ubuntu system optimizer. 187 | - [Zazu](https://github.com/tinytacoteam/zazu) - Launcher. 188 | - [Inpad](https://github.com/sarah-seo/Inpad) - Notes app with GitHub-flavored Markdown. 189 | - [Cerebro](https://github.com/KELiON/cerebro) - Launcher with inline previews. 190 | - [Desktop Dimmer](https://github.com/sidneys/desktop-dimmer) - Control the brightness of any display. 191 | - [LosslessCut](https://github.com/mifi/lossless-cut) - Lossless video trimming & cutting. 192 | - [Buka](https://github.com/oguzhaninan/Buka) - E-book management. 193 | - [Insomnia](https://github.com/getinsomnia/insomnia) - Create and manage HTTP requests. 194 | - [Tusk](https://github.com/champloohq/tusk) - Unofficial Evernote app. 195 | - [ProtonMail Desktop](https://github.com/protonmail-desktop/application) - Unofficial ProtonMail app. 196 | - [Comma Chameleon](https://github.com/theodi/comma-chameleon) - CSV editor. 197 | - [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Password manager. 198 | - [Mailspring](https://github.com/Foundry376/Mailspring) - Extensible email client. (Fork of Nylas Mail) 199 | - [Manta](https://github.com/hql287/Manta) - Invoicing for freelancers with beautiful and customizable templates. 200 | - [Headset](https://github.com/headsetapp/headset-electron) - Discover, collect, and listen to music from YouTube. 201 | - [Nuclear](https://github.com/nukeop/nuclear) - Music player that streams from free sources. 202 | - [FreeMAN](https://github.com/matthew-matvei/freeman) - File manager for power users. 203 | - [Mark Text](https://github.com/marktext/marktext) - Real-time preview Markdown editor. 204 | - [Pomotroid](https://github.com/Splode/pomotroid) - Pomodoro timer. 205 | - [Pretzel](https://github.com/amiechen/pretzel) - Show and search keyboard shortcuts for the current app. 206 | - [Netron](https://github.com/lutzroeder/netron) - Visualizer for deep learning and machine learning models. 207 | - [Ao](https://github.com/klauscfhq/ao) - Unofficial Microsoft To-Do app. 208 | - [Etcher](https://github.com/resin-io/etcher) - Flash OS images to SD cards and USB drives. 209 | - [Noty](https://github.com/fabiospampinato/noty) - Auto-saving sticky note with support for multiple notes in a single window. 210 | - [Notable](https://github.com/fabiospampinato/notable) - Markdown-based note-taking. 211 | - [Mini Diary](https://github.com/samuelmeuli/mini-diary) - Simple and secure journal app. 212 | - [Unsplash Wallpapers](https://github.com/soroushchehresa/unsplash-wallpapers) - Set desktop wallpaper from Unsplash. 213 | - [Motrix](https://github.com/agalwood/Motrix) - Download manager. 214 | - [Franz](https://github.com/meetfranz/franz) - Skype, Slack, Hangouts, WhatsApp, Grape, Telegram, FB Messenger, Hipchat in the same app. 215 | - [Gmail Desktop](https://github.com/timche/gmail-desktop) - Unofficial Gmail app. 216 | - [Upcount](https://github.com/madisvain/upcount) - Invoicing. 217 | - [ExifCleaner](https://github.com/szTheory/exifcleaner) - Clean image metadata with drag and drop. 218 | - [massCode](https://github.com/antonreshetov/massCode) - Code snippet manager for developers. 219 | - [Swifty](https://github.com/swiftyapp/swifty) - Password manager. 220 | - [MQTTX](https://github.com/emqx/MQTTX) - Client for MQTT, which is a lightweight messaging protocol. 221 | - [LightProxy](https://github.com/alibaba/lightproxy) - Web debugging proxy. 222 | - [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - Cross-platform SQL editor and database manager. 223 | - [Mouseless](https://github.com/ueberdosis/mouseless) - Keyboard shortcut training and look-up. 224 | - [Glyphfinder](https://github.com/ueberdosis/glyphfinder) - Unicode character search. 225 | - [Graviton Editor](https://github.com/Graviton-Code-Editor/Graviton-App) - Cross-platform code editor. 226 | - [Yana](https://github.com/lukasbach/yana) - Notebook app with rich-text notes, nested note organization and global search. 227 | - [SpaceEye](https://github.com/KYDronePilot/SpaceEye) - Live satellite imagery for your desktop background. 228 | - [Heroic Games Launcher](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Alternative Epic games launcher. 229 | 230 | ### Closed Source 231 | 232 | - [GitKraken](http://www.gitkraken.com) - Git client. 233 | - [1Clipboard](http://1clipboard.io) - Universal clipboard manager. 234 | - [Postman](https://www.getpostman.com) - Create and send HTTP requests. 235 | - [Slack](https://medium.com/ben-and-dion/how-slack-built-a-well-loved-product-going-against-peter-thiel-and-native-app-fashion-2abbbe5a022f) - Desktop version. 236 | - [Avocode](http://avocode.com) - Share design and collaborate. 237 | - [Prepros](https://prepros.io) - Compile almost any preprocessing language with live browser refresh. 238 | - [Stremio](http://www.strem.io) - Media center. 239 | - [Typetalk](http://www.typetalk.in) - Share and discuss ideas with your team through instant messaging. 240 | - [Pingendo](http://pingendo.com) - Bootstrap prototyping. 241 | - [Spreaker Studio](https://www.spreaker.com/download) - Audio recording and broadcasting. 242 | - [MockingBot](https://mockingbot.com) - Prototyping tool for designing apps. 243 | - [Caret](http://caret.io) - Markdown editor. 244 | - [Wantedly Chat](https://www.wantedly.com/chat) - Business team chat. *(Japanese)* 245 | - [Remember](https://rememberapp.co.kr) - Business card management. *(Korean)* 246 | - [MongoDB Compass](https://www.mongodb.com/products/compass) - Official MongoDB app. 247 | - [Freeter](https://freeter.io) - Organizer for freelancers & creatives. 248 | - [WhatsApp](https://www.whatsapp.com/download/) - Official WhatsApp app. 249 | - [CatLight](https://catlight.io) - Build status notifier. 250 | - [Automint](http://automint.in) - CRM for automobile businesses. 251 | - [Discord](https://discord.com) - Voice and text chat. 252 | - [Cocos Creator](http://cocos2d-x.org/products#creator) - Game editor for creating web and native games for Cocos2D-x. 253 | - [Inkdrop](https://www.inkdrop.info) - Markdown notebook for hackers. 254 | - [Exodus](https://www.exodus.io) - Secure, manage, and exchange blockchain assets like Bitcoin and Ethereum. 255 | - [Hackolade](http://hackolade.com) - Data modeling for NoSQL and multi-model databases. 256 | - [ScreenSquid](http://screensquid.com) - Record and playback website visitor sessions. 257 | - [CashNotify](https://cashnotify.com) - Monitor your Stripe accounts from your menu bar. 258 | - [Mockoon](https://mockoon.com) - Mock servers in seconds. 259 | - [Twitch](https://app.twitch.tv) - Official Twitch app. 260 | - [Fenêtre](https://fenêt.re) - Picture-in-picture for your Mac. 261 | - [Cleavr](https://cleavr.io) - Provision servers and deploy web apps. 262 | - [Brandy](https://getbrandy.io) - A brand asset manager for your menu bar. 263 | - [Cacher](https://www.cacher.io) - Cloud-based, team-enabled code snippet manager with Gist sync. 264 | - [MusicPlus](https://musicplus.io) - Free music app for macOS and Windows. 265 | - [Mingo](https://mingo.io) - MongoDB GUI. 266 | - [Moon Modeler](https://datensen.com) - Schema design tool for MongoDB, Mongoose, and MariaDB. 267 | - [Notion](https://notion.so) - All-in-one workspace for your notes, tasks, wikis, and databases. 268 | - [FATpick](https://www.fatpick.com) - Guitar tablature viewer that scores your performance as you play along. 269 | - [Taskade](https://www.taskade.com) - Realtime organization and collaboration tool for distributed teams with tasks, notes, and chat. 270 | - [Coloban](https://www.coloban.com) - All-in-one project management tool with chats, Kanban, Gantt, calls, screenshare, and more. 271 | - [Dynobase](https://dynobase.dev) - AWS DynamoDB GUI. 272 | - [Nota](https://nota.md) - Pro writing app designed for local Markdown files. 273 | - [Lotus](https://getlotus.app) - Keep up with GitHub notifications without stress. 274 | 275 | ### Samples 276 | 277 | - [Electron API usage](https://github.com/hokein/electron-sample-apps) - Sample apps illustrating usage of Electron APIs. 278 | - [Screen Recorder](https://github.com/hokein/electron-screen-recorder) - WebRTC screen recorder. 279 | - [Activity Monitor](https://electronjs.org/blog/simple-samples#activity-monitor) - Shows a doughnut chart of the CPU system, user, and idle activity time. 280 | - [Hash](https://electronjs.org/blog/simple-samples#hash) - Shows the hash values of entered text using different algorithms. 281 | - [Prices](https://electronjs.org/blog/simple-samples#prices) - Shows the current price of oil, gold, and silver using the Yahoo Finance API. 282 | - [Touch Bar API](https://github.com/Rawnly/touchbar-api-sample) - Example of macOS Touch Bar integration. 283 | 284 | ## Boilerplates 285 | 286 | - [electron-boilerplate](https://github.com/sindresorhus/electron-boilerplate) - Boilerplate to kickstart creating an app - by [sindresorhus](http://github.com/sindresorhus). 287 | - [generator-electron](https://github.com/sindresorhus/generator-electron) - Scaffold out an app boilerplate. 288 | - [electron-boilerplate](https://github.com/szwacz/electron-boilerplate) - Comprehensive boilerplate which even generates installers - by [szwacz](https://github.com/szwacz). 289 | - [electron-react-boilerplate](https://github.com/chentsulin/electron-react-boilerplate) - Boilerplate based on React and webpack. 290 | - [electron-quick-start](https://github.com/electron/electron-quick-start) - Clone the repo to try a simple app. 291 | - [bozon](https://github.com/railsware/bozon) - Scaffold, run, test, and package your app. 292 | - [secure-electron-template](https://github.com/reZach/secure-electron-template) - Security-focused boilerplate for creating apps with React, Redux, Webpack, and i18next. 293 | - [angular-electron](https://github.com/maximegris/angular-electron) - Fast bootstrapping with Angular, Electron, TypeScript, SASS, and Hot Reload. 294 | - [vite-electron-builder](https://github.com/cawa-93/vite-electron-builder) - Secure boilerplate for Electron app based on Vite. TypeScript + Vue/React/Angular/Svelte/Vanilla. 295 | 296 | ## Tools 297 | 298 | ### For Electron 299 | 300 | - [electron-builder](https://github.com/electron-userland/electron-builder) - Create installers. 301 | - [devtron](https://github.com/electron/devtron) - Official DevTools extension. 302 | - [electron-packager](https://github.com/electron-userland/electron-packager) - Package and distribute your app. 303 | - [electron-debug](https://github.com/sindresorhus/electron-debug) - Adds useful debug features. 304 | - [electron-is-dev](https://github.com/sindresorhus/electron-is-dev) - Check if Electron is running in development. 305 | - [electron-localshortcut](https://github.com/parro-it/electron-localshortcut) - Add keyboard shortcuts locally to a window. 306 | - [electron-gh-release](https://github.com/jenslind/electron-gh-releases) - Auto-update by releasing on GitHub. 307 | - [electron-release](https://github.com/jenslind/electron-release) - Publish a new release of your app to GitHub. 308 | - [electron-updater](https://github.com/evolvelabs/electron-updater) - Auto-updater leveraging npm to deploy updates. 309 | - [fix-path](https://github.com/sindresorhus/fix-path) - Fix the $PATH on macOS when run from a GUI app. Useful when spawning a child process. 310 | - [auto-launch](https://github.com/Teamwork/node-auto-launch) - Launch apps at system startup. 311 | - [nuts](https://github.com/GitbookIO/nuts) - Releases server with auto-updater and GitHub as a backend. 312 | - [electron-dl](https://github.com/sindresorhus/electron-dl) - Simplified file downloads. 313 | - [electron-release-server](https://github.com/ArekSredzki/electron-release-server) - Self-hosted release server with front-end & auto-updater support. 314 | - [electron-rebuild](https://github.com/electron/electron-rebuild) - Rebuild native Node.js modules against the currently installed Electron version. 315 | - [electron-compile](https://github.com/electron/electron-compile) - Use ES2015, CoffeeScript, Less, Stylus in your app without a precompilation step. 316 | - [electron-positioner](https://github.com/jenslind/electron-positioner) - Position windows at common spots. 317 | - [electron-window-state](https://github.com/mawie81/electron-window-state) - Persist window sizes and positions. 318 | - [electron-drag](https://github.com/kapetan/electron-drag) - Improved window dragging. 319 | - [debug-menu](https://github.com/parro-it/debug-menu) - Chrome-like "inspect element" context-menu. 320 | - [electron-installer-debian](https://github.com/unindented/electron-installer-debian) - Create a Debian package. 321 | - [electron-installer-redhat](https://github.com/unindented/electron-installer-redhat) - Create a Red Hat package. 322 | - [electron-installer-windows](https://github.com/unindented/electron-installer-windows) - Create a Windows package. 323 | - [electron-sudo](https://github.com/automation-stack/electron-sudo) - Subprocesses with administrative privileges. 324 | - [electron-json-storage](https://github.com/jviotti/electron-json-storage) - Write and read user settings. 325 | - [electron-download](https://github.com/electron-userland/electron-download) - Download the Electron release zip from GitHub. 326 | - [ipc-stream](https://github.com/jprichardson/electron-ipc-stream) - Duplex stream over IPC. 327 | - [is-electron-renderer](https://github.com/jprichardson/is-electron-renderer) - Check if your code is running in `main` or `renderer`. 328 | - [electron-osx-sign](https://github.com/electron-userland/electron-osx-sign) - Code-signing for macOS apps. 329 | - [electron-detach](https://github.com/parro-it/electron-detach) - Restart an Electron app as a detached process. 330 | - [ember-electron](https://github.com/felixrieseberg/ember-electron) - Build, test, and package Ember apps. 331 | - [electrify](https://github.com/arboleya/electrify) - Package Meteor apps. 332 | - [spectron](https://github.com/electron/spectron) - Test Electron apps using ChromeDriver. 333 | - [babel-preset-electron](https://github.com/emorikawa/babel-preset-electron) - Babel preset that only compiles what's necessary for a particular Electron version. 334 | - [electron-is](https://github.com/delvedor/electron-is) - Utility functions. 335 | - [electron-osx-appearance](https://github.com/danhp/electron-osx-appearance) - Simplified API for accessing macOS's appearance settings. 336 | - [electron-store](https://github.com/sindresorhus/electron-store) - Save and load data like user preferences, app state, cache, etc. 337 | - [electron-context-menu](https://github.com/sindresorhus/electron-context-menu) - Extensible context menu. 338 | - [electron-require](https://github.com/brrd/electron-require) - Simplified require. 339 | - [NeDB](https://github.com/louischatriot/nedb) - Embedded persistent or in-memory database. 340 | - [RxDB](https://github.com/pubkey/rxdb) - A realtime NoSQL database. 341 | - [electron-devtools-installer](https://github.com/GPMDP/electron-devtools-installer) - Install DevTools extensions from the Chrome Web Store. 342 | - [electron-log](https://github.com/megahertz/electron-log) - Simple logging. 343 | - [electron-redux](https://github.com/hardchor/electron-redux) - Synchronize Redux state across windows. 344 | - [electron-vibrancy](https://github.com/arkenthera/electron-vibrancy) - Add vibrancy (blur) to windows. 345 | - [electron-about-window](https://github.com/rhysd/electron-about-window) - 'About This App' window. 346 | - [elemon](https://github.com/manidlou/elemon) - Live-reload your app during development. 347 | - [electron-is-accelerator](https://github.com/brrd/electron-is-accelerator) - Check if a string is a valid accelerator. 348 | - [electron-pdf-window](https://github.com/gerhardberger/electron-pdf-window) - View PDF files in browser windows. 349 | - [electron-router](https://github.com/m0n0l0c0/electron-router) - Router tidying up IPC message passing. 350 | - [electron-settings](https://github.com/nathanbuchar/electron-settings) - Reads and writes user settings to disk. 351 | - [got](https://github.com/sindresorhus/got) - Simplified HTTP requests. 352 | - [electron-unhandled](https://github.com/sindresorhus/electron-unhandled) - Catch unhandled errors and promise rejections. 353 | - [electron-process-manager](https://github.com/getstation/electron-process-manager) - Process manager UI (like Chrome's task manager). 354 | - [electron-util](https://github.com/sindresorhus/electron-util) - Useful utilities for developing apps and modules. 355 | - [electron-reloader](https://github.com/sindresorhus/electron-reloader) - Simple auto-reloading during development. 356 | - [electron-serve](https://github.com/sindresorhus/electron-serve) - Static file serving (Useful for routing, like `react-router`). 357 | - [electron-timber](https://github.com/sindresorhus/electron-timber) - Pretty logger. 358 | - [chromium-net-errors](https://github.com/maxkueng/chromium-net-errors) - Chromium's network errors as custom error classes. 359 | - [run-electron](https://github.com/sindresorhus/run-electron) - Run Electron without all the junk terminal output. 360 | - [ngx-electron](https://github.com/ThorstenHans/ngx-electron/) - Integrate Electron APIs and Angular. 361 | - [debugtron](https://github.com/pd4d10/debugtron) - Debug in-production Electron-based apps. 362 | - [electron-ssl-pinning](https://github.com/dialogs/electron-ssl-pinning) - Prevent MITM. 363 | - [electron-better-ipc](https://github.com/sindresorhus/electron-better-ipc) - Simplified IPC communication. 364 | - [electron-chrome-extension](https://github.com/getstation/electron-chrome-extension) - Add support for Chrome extensions. 365 | - [electron-ipc-proxy](https://github.com/frankwallis/electron-ipc-proxy) - Transparent asynchronous remoting between browser windows and the main process. 366 | - [trilogy](https://github.com/citycide/trilogy) - TypeScript SQLite database layer with support for both native C++ and pure JavaScript backends. 367 | - [adblocker-electron](https://github.com/cliqz-oss/adblocker/tree/master/packages/adblocker-electron) - Block ads and trackers. 368 | - [electronmon](https://github.com/catdad/electronmon) - Monitor and reload apps out-of-process during development. 369 | - [electron-create-menu](https://github.com/kilian/electron-create-menu) - Default menus for all platforms, easily extendable, and with i18n support. 370 | - [electronegativity](https://github.com/doyensec/electronegativity) - Identify misconfigurations and security anti-patterns. 371 | - [UpdateRocks!](https://www.update.rocks) - Auto-update service. Free for open source projects. 372 | 373 | ### Using Electron 374 | 375 | - [devtool](https://github.com/Jam3/devtool) - Debug Node.js with Chrome DevTools. 376 | - [nativefier](https://github.com/jiahaog/nativefier) - Create an app of any website. 377 | - [electron-stream](https://github.com/juliangruber/electron-stream) - Streaming wrapper. 378 | - [Nightmare](http://www.nightmarejs.org) - High-level browser automation library (alternative to PhantomJS). 379 | - [electron-pdf](https://github.com/fraserxu/electron-pdf) - Generate PDF from URL, HTML, or Markdown files on the command-line. 380 | - [Geojsonapp](https://github.com/mick/geojsonapp) - Preview GeoJSON locally. 381 | - [electron-mocha](https://github.com/jprichardson/electron-mocha) - Run Mocha tests in Electron. 382 | - [electron-har](https://github.com/shyiko/electron-har) - Command-line tool for generating HTTP Archive (HAR). 383 | - [electron-windows-store](https://github.com/catalystcode/electron-windows-store) - Turn Electron apps into Windows Store AppX packages. 384 | - [Reactotron](https://github.com/reactotron/reactotron) - Inspect your React and React Native apps. 385 | - [jest-electron](https://github.com/hustcc/jest-electron) - Run and debug Jest unit tests in a browser environment. 386 | 387 | ## Components 388 | 389 | - [Photon](http://photonkit.com) - UI toolkit for building beautiful apps. 390 | - [React PhotonKit](https://github.com/react-photonkit/react-photonkit) - Photon components built with React. 391 | - [menubar](https://github.com/maxogden/menubar) - Menubar app framework. 392 | - [cookies](https://github.com/hstove/electron-cookies) - Adds support for `document.cookie`. 393 | - [window](https://github.com/jprichardson/electron-window) - Create and manage windows. 394 | - [React Desktop](https://github.com/gabrielbull/react-desktop) - UI toolkit for macOS and Windows built with React. 395 | - [electron-input-menu](https://github.com/parro-it/electron-input-menu) - Context menu for input elements. 396 | - [chrome-tabs](https://github.com/adamschwartz/chrome-tabs) - Chrome like tabs. 397 | - [titlebar](https://github.com/kapetan/titlebar) - Emulate the macOS window titlebar. 398 | - [Brightwheel](https://github.com/loranallensmith/brightwheel) - Build and manage UI components with Photon and Etch. 399 | - [Xel](https://xel-toolkit.org) - Widget toolkit for building native-like apps. 400 | 401 | ## Documentation 402 | 403 | - [Quick Start](https://electronjs.org/docs/tutorial/quick-start) 404 | - [Official docs](https://electronjs.org/docs) 405 | - [Essential Electron](http://jlord.us/essential-electron/) - Concise overview. 406 | 407 | ## Articles 408 | 409 | - [Electron Fundamentals](http://maxogden.com/electron-fundamentals.html) 410 | - [Building a desktop application with Electron](https://medium.com/@bojzi/building-a-desktop-application-with-electron-204203eeb658) 411 | - [Codesigning your app for macOS](http://jbavari.github.io/blog/2015/08/14/codesigning-electron-applications/) 412 | - [Auto-updating apps for macOS and Windows: The complete guide](https://medium.com/@svilen/auto-updating-apps-for-windows-and-osx-using-electron-the-complete-guide-4aa7a50b904c) 413 | - [Building a desktop app with Electron, React, and Redux](https://anadea.info/blog/building-desktop-app-with-electron) 414 | - [Introducing BrowserView for Electron](https://blog.figma.com/introducing-browserview-for-electron-7b40b4b493d5) - New Electron API to embed web apps with fewer bugs and improved performance. 415 | - [Migrating Slack's Desktop App to BrowserView](https://slack.engineering/growing-pains-migrating-slacks-desktop-app-to-browserview-2759690d9c7b) - Slack rewrote their Electron app with `BrowserView`, Redux, Rx, and TypeScript, to fix its performance problems. 416 | - [Electron on the App Store](https://medium.com/@yoannm/pushing-electron-on-the-mac-appstore-early-stages-7dcb85936f92) - A 5-part series about the journey of making and publishing an Electron app to the Mac App Store. 417 | - [Building a file explorer with Electron, Quasar, and Vue](https://medium.com/quasar-framework/building-an-electron-file-explorer-with-quasar-and-vue-7bf94f1bbf6) - Focused on design and code decisions and Electron security. 418 | - [Using Google Analytics to gather usage statistics in Electron](https://kilianvalkhof.com/2018/apps/using-google-analytics-to-gather-usage-statistics-in-electron/) - How to collect anonymous user statistics. 419 | - [Notarizing your Electron app](https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/) - How to configure your app packaging for Apple's notarization. 420 | - [Making Electron apps feel native on Mac](https://getlotus.app/21-making-electron-apps-feel-native-on-mac) 421 | 422 | ## Books 423 | 424 | - [Developing an Electron Edge](https://bleedingedgepress.com/developing-an-electron-edge/) - [Preview](https://read.amazon.com/kp/embed?asin=B01G7TTKSK&asin=B01G7TTKSK&preview=newtab&linkCode=kpe&ref_=cm_sw_r_kb_dp_DLhOxb0XZ3MEC) 💲 425 | - [Electron in Action](https://www.manning.com/books/electron-in-action?a_aid=electroninaction) 💲 426 | - [Cross-Platform Desktop Applications](https://www.manning.com/books/cross-platform-desktop-applications) 💲 427 | 428 | ## Videos 429 | 430 | - [Getting Started with Electron 1.x](https://www.youtube.com/watch?v=jKzBJAowmGg) 431 | - [Packaging and Distributing Electron Desktop Apps](https://www.youtube.com/watch?v=dz5SnmBzBXc) 432 | - [Multi Window Electron Desktop Apps](https://www.youtube.com/watch?v=K-H2amwQ_pU) 433 | - [The State of Electron](https://www.youtube.com/watch?v=RaPmi-33rfc) 434 | - [Cross-Platform Desktop Apps with Electron](https://www.youtube.com/watch?v=9xX_G0l5jLU) 435 | - [Building Native Desktop apps using Electron](https://www.youtube.com/watch?v=nXIrFq5-FC8) 436 | - [The New Desktop: Electron, React, & Pixel-Perfect Native-Feeling Experiences](https://www.youtube.com/watch?v=jRPUB-D1Wx0) 437 | - [Building Desktop Apps with Node.js and Electron](https://www.youtube.com/watch?v=rbSvc8_BHaw) 438 | - [Electron Fundamentals course - Pluralsight](https://www.pluralsight.com/courses/electron-fundamentals) 💲 439 | - [Electron: Building Cross Platform Desktop Apps - Lynda](https://www.lynda.com/Electron-tutorials/Electron-Building-Cross-Platform-Desktop-Apps/518051-2.html) 💲 440 | - [Automatically Build and Publish Node and Electron Applications for Linux](https://pusher.com/sessions/meetup/london-node-user-group/automatically-build-and-publish-node-and-electron-applications-for-linux) 441 | - [Build a desktop application with Electron - Egghead](https://egghead.io/courses/build-a-desktop-application-with-electron) 💲 442 | - [Build Cross-Platform Desktop Apps with Electron - Frontend Masters](https://frontendmasters.com/courses/electron/) 💲 443 | - [Electron Meetup SF, November 2017](https://www.youtube.com/watch?v=DDjVaHPvRdM) - Includes some good talks on improving app startup time, debugging crashes, etc. 444 | - [Make Your Electron App Feel at Home Everywhere](https://www.youtube.com/watch?v=fw4PmPaghyU) - Tips on making your app feel more native on macOS, Windows, and Linux without sacrificing your own style. 445 | 446 | ## Podcasts 447 | 448 | - [JavaScript Jabber: Electron with Jessica Lord and Amy Palamountain](https://devchat.tv/js-jabber/193-jsj-electron-with-jessica-lord-and-amy-palamountain) 449 | - [Hanselminutes: Creating cross-platform Electron apps with Jessica Lord](http://hanselminutes.com/534/creating-cross-platform-electron-apps-with-jessica-lord) 450 | - [JavaScript Air: Electron Apps with @jlord and @emorikawa](https://javascriptair.com/episodes/2016-07-06) 451 | - [The Changelog #216: GitHub's Electron with Zeke Sikelianos](https://changelog.com/podcast/216) 452 | - [Full Stack Radio #48: Jessica Lord - Building Desktop Apps with Electron](http://www.fullstackradio.com/48) 453 | 454 | ## Community 455 | 456 | - [Discuss](https://discuss.atom.io/c/electron) 457 | - [Reddit](https://www.reddit.com/r/electronjs) 458 | - [Stack Overflow](https://stackoverflow.com/questions/tagged/electron) 459 | - [`@electronjs` on Twitter](https://twitter.com/electronjs) 460 | - [`#atom-shell` on Freenode](http://webchat.freenode.net/?channels=atom-shell) 461 | - [`#electron` on Atom Slack](https://discuss.atom.io/t/join-us-on-slack/16638) 462 | - [electron-jp](https://electron-jp-slackin.herokuapp.com) *(Japanese)* 463 | - [electron-br](https://electron-br.slack.com) *(Brazilian Portuguese)* 464 | - [electron-pl](https://electronpl.github.io) *(Polish)* 465 | - [`@electron_ru` on Telegram](https://telegram.me/electron_ru) *(Russian)* 466 | - [`electronjs` on Facebook](https://www.facebook.com/groups/electronjs/) 467 | - [Product Hunt](https://www.producthunt.com/@sindresorhus/collections/electron-apps) 468 | 469 | ## Contribute 470 | 471 | Contributions welcome! Read the [contribution guidelines](contributing.md) first. 472 | 473 | ## Related 474 | 475 | - [awesome-nodejs](https://github.com/sindresorhus/awesome-nodejs) 476 | - [awesome-electronjs-hacking](https://github.com/doyensec/awesome-electronjs-hacking) 477 | --------------------------------------------------------------------------------