├── .editorconfig
├── .gitattributes
├── .github
└── pull_request_template.md
├── code-of-conduct.md
├── contributing.md
├── electron-logo.svg
├── license
└── readme.md
/.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 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 | readme.md merge=union
3 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/electron-logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/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 [](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 |
10 |
11 | ---
12 |
13 |
14 |
15 |
16 | Check out my macOS app
17 |
18 |
19 | Menu Bar Spacing
20 |
21 | Customize the gap between menu bar items on macOS
22 |
23 |
24 |
25 |
26 |
27 | ---
28 |
29 |
30 |
31 | ## Contents
32 |
33 | - [Apps](#apps)
34 | - [Boilerplates](#boilerplates)
35 | - [Tools](#tools)
36 | - [Components](#components)
37 | - [Documentation](#documentation)
38 | - [Articles](#articles)
39 | - [Books](#books)
40 | - [Videos](#videos)
41 | - [Podcasts](#podcasts)
42 | - [Community](#community)
43 | - [Related](#related)
44 |
45 | ## Apps
46 |
47 | Made with Electron.
48 |
49 | ### Open Source
50 |
51 | ###### Featured
52 |
53 | - [WebTorrent](https://github.com/feross/webtorrent-app) - Streaming torrent client.
54 | - [Min](https://github.com/minbrowser/min) - Minimal web browser.
55 | - [Hyper](https://github.com/zeit/hyper) - Terminal.
56 | - [Visual Studio Code](https://github.com/Microsoft/vscode) - Cross-platform IDE.
57 |
58 | ###### Other
59 |
60 | - [Git-it](https://github.com/jlord/git-it-electron) - Teaches you Git and GitHub.
61 | - [Caprine](https://github.com/sindresorhus/caprine) - Unofficial Facebook Messenger app.
62 | - [Simplenote](https://github.com/Automattic/simplenote-electron) - Note keeper.
63 | - [Abricotine](https://github.com/brrd/Abricotine) - Markdown editor with inline preview.
64 | - [Kap](https://github.com/wulkano/kap) - Screen recorder with GIF support.
65 | - [Medis](https://github.com/luin/medis) - Redis database management.
66 | - [SmartMirror](https://github.com/evancohen/smart-mirror) - Voice controlled smart mirror.
67 | - [Beaker](https://github.com/beakerbrowser/beaker) - Browser with peer-to-peer web protocols.
68 | - [KeeWeb](https://github.com/keeweb/keeweb) - Unofficial KeePass app.
69 | - [Gitify](https://github.com/manosim/gitify) - GitHub notifications in your menubar.
70 | - [SpaceRadar](https://github.com/zz85/space-radar) - Interactive disk space and memory visualization.
71 | - [Leanote](https://github.com/leanote/desktop-app) - Cloud notepad.
72 | - [Loop Drop](https://github.com/mmckegg/loop-drop-app) - MIDI looper and synth for live electronic music performances.
73 | - [Pomodoro](https://github.com/G07cha/pomodoro) - Timer based on the Pomodoro Technique.
74 | - [Sia-UI](https://gitlab.com/NebulousLabs/Sia-UI) - Decentralized file storage system based on cryptocurrency technology.
75 | - [MarkRight](https://github.com/dvcrn/markright) - GitHub flavored Markdown editor with live preview.
76 | - [Sqlectron](https://github.com/sqlectron/sqlectron-gui) - SQL client.
77 | - [Light Table](https://github.com/LightTable/LightTable) - Code editor with instant feedback.
78 | - [Google Play Music Desktop Player](https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-) - Unofficial Google Play Music app.
79 | - [Chrome DevTools](https://github.com/auchenberg/chrome-devtools-app) - Chrome DevTools packaged as an app.
80 | - [Proton](https://github.com/steventhanna/proton) - Markdown editor with live preview.
81 | - [Hawkpass](https://github.com/kalpetros/hawkpass) - Password generator.
82 | - [Boostnote](https://github.com/BoostIO/Boostnote) - Markdown note & code snippet app for developers.
83 | - [Before Dawn](https://github.com/muffinista/before-dawn) - Screensaver tool.
84 | - [Catify](https://github.com/MeoBeoI/Catify) - Utility for Spotify.
85 | - [Ansel](https://github.com/m0g/ansel) - Image organizer.
86 | - [Tockler](https://github.com/MayGo/tockler) - Tracks your time.
87 | - [Mattermost](https://github.com/mattermost/desktop) - Mattermost client.
88 | - [Crypter](https://github.com/HR/Crypter) - Secure encryption client.
89 | - [YakYak](https://github.com/yakyak/yakyak) - Unofficial Google Hangouts app.
90 | - [Museeks](https://github.com/KeitIG/museeks) - Music player.
91 | - [Sabaki](https://github.com/SabakiHQ/Sabaki) - Go/Baduk/Weiqi board.
92 | - [Wire](https://github.com/wireapp/wire-desktop) - Messenger and calling app.
93 | - [Extraterm](https://github.com/sedwards2009/extraterm) - Terminal.
94 | - [Stacer](https://github.com/oguzhaninan/Stacer) - Ubuntu system optimizer.
95 | - [Inpad](https://github.com/sarah-seo/Inpad) - Notes app with GitHub-flavored Markdown.
96 | - [Cerebro](https://github.com/KELiON/cerebro) - Launcher with inline previews.
97 | - [LosslessCut](https://github.com/mifi/lossless-cut) - Lossless video trimming & cutting.
98 | - [Buka](https://github.com/oguzhaninan/Buka) - E-book management.
99 | - [Insomnia](https://github.com/getinsomnia/insomnia) - Create and manage HTTP requests.
100 | - [Tusk](https://github.com/champloohq/tusk) - Unofficial Evernote app.
101 | - [Buttercup Desktop](https://github.com/buttercup/buttercup-desktop) - Password manager.
102 | - [Mailspring](https://github.com/Foundry376/Mailspring) - Extensible email client. (Fork of Nylas Mail)
103 | - [Headset](https://github.com/headsetapp/headset-electron) - Discover, collect, and listen to music from YouTube.
104 | - [Nuclear](https://github.com/nukeop/nuclear) - Music player that streams from free sources.
105 | - [Mark Text](https://github.com/marktext/marktext) - Real-time preview Markdown editor.
106 | - [Pomotroid](https://github.com/Splode/pomotroid) - Pomodoro timer.
107 | - [Netron](https://github.com/lutzroeder/netron) - Visualizer for deep learning and machine learning models.
108 | - [Etcher](https://github.com/resin-io/etcher) - Flash OS images to SD cards and USB drives.
109 | - [Notable](https://github.com/fabiospampinato/notable) - Markdown-based note-taking.
110 | - [Unsplash Wallpapers](https://github.com/soroushchehresa/unsplash-wallpapers) - Set desktop wallpaper from Unsplash.
111 | - [Motrix](https://github.com/agalwood/Motrix) - Download manager.
112 | - [Franz](https://github.com/meetfranz/franz) - Skype, Slack, Hangouts, WhatsApp, Grape, Telegram, FB Messenger, Hipchat in the same app.
113 | - [Gmail Desktop](https://github.com/timche/gmail-desktop) - Unofficial Gmail app.
114 | - [Upcount](https://github.com/madisvain/upcount) - Invoicing.
115 | - [ExifCleaner](https://github.com/szTheory/exifcleaner) - Clean image metadata with drag and drop.
116 | - [massCode](https://github.com/antonreshetov/massCode) - Code snippet manager for developers.
117 | - [Swifty](https://github.com/swiftyapp/swifty) - Password manager.
118 | - [MQTTX](https://github.com/emqx/MQTTX) - Client for MQTT, which is a lightweight messaging protocol.
119 | - [LightProxy](https://github.com/alibaba/lightproxy) - Web debugging proxy.
120 | - [Beekeeper Studio](https://github.com/beekeeper-studio/beekeeper-studio) - Cross-platform SQL editor and database manager.
121 | - [Mouseless](https://github.com/ueberdosis/mouseless) - Keyboard shortcut training and look-up.
122 | - [Glyphfinder](https://github.com/ueberdosis/glyphfinder) - Unicode character search.
123 | - [Graviton Editor](https://github.com/Graviton-Code-Editor/Graviton-App) - Cross-platform code editor.
124 | - [Yana](https://github.com/lukasbach/yana) - Notebook app with rich-text notes, nested note organization and global search.
125 | - [SpaceEye](https://github.com/KYDronePilot/SpaceEye) - Live satellite imagery for your desktop background.
126 | - [Heroic Games Launcher](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Alternative Epic games launcher.
127 | - [VIR](https://github.com/TommyX12/VIR) - Intelligent time manager with automatic planning.
128 | - [Browserosaurus](https://github.com/will-stone/browserosaurus) - Browser prompter for macOS.
129 | - [linked](https://github.com/lostdesign/linked) - Daily journal.
130 | - [shadowsocks-electron](https://github.com/nojsja/shadowsocks-electron) - Cross-platform Shadowsocks client.
131 | - [Sigma File Manager](https://github.com/aleksey-hoffman/sigma-file-manager) - Modern file manager.
132 | - [Ostara](https://github.com/krud-dev/ostara) - Monitor and interact with Spring Boot apps via Actuator.
133 | - [PikaTorrent](https://github.com/G-Ray/pikatorrent) - BitTorrent client.
134 | - [Wave Terminal](https://github.com/wavetermdev/waveterm) - Open-source terminal with AI integration.
135 |
136 | ### Closed Source
137 |
138 | ###### Featured
139 |
140 | - [Rosefinch](https://rosefinchapp.com) - Store and run SQL queries.
141 | - [Nota](https://nota.md) - Pro writing app designed for local Markdown files.
142 |
143 | ###### Other
144 |
145 | - [GitKraken](http://www.gitkraken.com) - Git client.
146 | - [1Clipboard](http://1clipboard.io) - Universal clipboard manager.
147 | - [Postman](https://www.getpostman.com) - Create and send HTTP requests.
148 | - [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.
149 | - [Avocode](http://avocode.com) - Share design and collaborate.
150 | - [Prepros](https://prepros.io) - Compile almost any preprocessing language with live browser refresh.
151 | - [Stremio](http://www.strem.io) - Media center.
152 | - [Typetalk](http://www.typetalk.in) - Share and discuss ideas with your team through instant messaging.
153 | - [Pingendo](http://pingendo.com) - Bootstrap prototyping.
154 | - [Spreaker Studio](https://www.spreaker.com/download) - Audio recording and broadcasting.
155 | - [MockingBot](https://mockingbot.com) - Prototyping tool for designing apps.
156 | - [Caret](http://caret.io) - Markdown editor.
157 | - [Remember](https://rememberapp.co.kr) - Business card management. *(Korean)*
158 | - [MongoDB Compass](https://www.mongodb.com/products/compass) - Official MongoDB app.
159 | - [Freeter](https://freeter.io) - Organizer for freelancers & creatives.
160 | - [WhatsApp](https://www.whatsapp.com/download/) - Official WhatsApp app.
161 | - [CatLight](https://catlight.io) - Build status notifier.
162 | - [Discord](https://discord.com) - Voice and text chat.
163 | - [Cocos Creator](http://cocos2d-x.org/products#creator) - Game editor for creating web and native games for Cocos2D-x.
164 | - [Inkdrop](https://www.inkdrop.info) - Markdown notebook for hackers.
165 | - [Exodus](https://www.exodus.io) - Secure, manage, and exchange blockchain assets like Bitcoin and Ethereum.
166 | - [Hackolade](http://hackolade.com) - Data modeling for NoSQL and multi-model databases.
167 | - [CashNotify](https://cashnotify.com) - Monitor your Stripe accounts from your menu bar.
168 | - [Mockoon](https://mockoon.com) - Mock servers in seconds.
169 | - [Twitch](https://app.twitch.tv) - Official Twitch app.
170 | - [Fenêtre](https://fenêt.re) - Picture-in-picture for your Mac.
171 | - [Cleavr](https://cleavr.io) - Provision servers and deploy web apps.
172 | - [Brandy](https://getbrandy.io) - A brand asset manager for your menu bar.
173 | - [Cacher](https://www.cacher.io) - Cloud-based, team-enabled code snippet manager with Gist sync.
174 | - [MusicPlus](https://musicplus.io) - Free music app for macOS and Windows.
175 | - [Mingo](https://mingo.io) - MongoDB GUI.
176 | - [Moon Modeler](https://datensen.com) - Schema design tool for MongoDB, Mongoose, and MariaDB.
177 | - [Notion](https://notion.so) - All-in-one workspace for your notes, tasks, wikis, and databases.
178 | - [FATpick](https://www.fatpick.com) - Guitar tablature viewer that scores your performance as you play along.
179 | - [Taskade](https://www.taskade.com) - Realtime organization and collaboration tool for distributed teams with tasks, notes, and chat.
180 | - [Coloban](https://www.coloban.com) - All-in-one project management tool with chats, Kanban, Gantt, calls, screenshare, and more.
181 | - [Dynobase](https://dynobase.dev) - AWS DynamoDB GUI.
182 | - [Lotus](https://getlotus.app) - Keep up with GitHub notifications without stress.
183 | - [RunJS](https://runjs.app) - Playground for JavaScript and TypeScript.
184 | - [OpenSFTP](https://opensftp.com) - Integrated SSH and SFTP workspace client.
185 |
186 | ### Samples
187 |
188 | - [Electron API usage](https://github.com/hokein/electron-sample-apps) - Sample apps illustrating usage of Electron APIs.
189 | - [Screen Recorder](https://github.com/hokein/electron-screen-recorder) - WebRTC screen recorder.
190 | - [Activity Monitor](https://electronjs.org/blog/simple-samples#activity-monitor) - Shows a doughnut chart of the CPU system, user, and idle activity time.
191 | - [Hash](https://electronjs.org/blog/simple-samples#hash) - Shows the hash values of entered text using different algorithms.
192 | - [Prices](https://electronjs.org/blog/simple-samples#prices) - Shows the current price of oil, gold, and silver using the Yahoo Finance API.
193 |
194 | ## Boilerplates
195 |
196 | - [electron-boilerplate](https://github.com/sindresorhus/electron-boilerplate) - Boilerplate to kickstart creating an app - by [sindresorhus](http://github.com/sindresorhus).
197 | - [generator-electron](https://github.com/sindresorhus/generator-electron) - Scaffold out an app boilerplate.
198 | - [electron-boilerplate](https://github.com/szwacz/electron-boilerplate) - Comprehensive boilerplate which even generates installers - by [szwacz](https://github.com/szwacz).
199 | - [electron-react-boilerplate](https://github.com/chentsulin/electron-react-boilerplate) - Boilerplate based on React and webpack.
200 | - [electron-quick-start](https://github.com/electron/electron-quick-start) - Clone the repo to try a simple app.
201 | - [bozon](https://github.com/railsware/bozon) - Scaffold, run, test, and package your app.
202 | - [secure-electron-template](https://github.com/reZach/secure-electron-template) - Security-focused boilerplate for creating apps with React, Redux, Webpack, and i18next.
203 | - [angular-electron](https://github.com/maximegris/angular-electron) - Fast bootstrapping with Angular, Electron, TypeScript, SASS, and Hot Reload.
204 | - [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.
205 |
206 | ## Tools
207 |
208 | ### For Electron
209 |
210 | - [electron-builder](https://github.com/electron-userland/electron-builder) - Create installers.
211 | - [electron-packager](https://github.com/electron-userland/electron-packager) - Package and distribute your app.
212 | - [electron-debug](https://github.com/sindresorhus/electron-debug) - Adds useful debug features.
213 | - [electron-is-dev](https://github.com/sindresorhus/electron-is-dev) - Check if Electron is running in development.
214 | - [electron-localshortcut](https://github.com/parro-it/electron-localshortcut) - Add keyboard shortcuts locally to a window.
215 | - [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.
216 | - [electron-dl](https://github.com/sindresorhus/electron-dl) - Simplified file downloads.
217 | - [electron-release-server](https://github.com/ArekSredzki/electron-release-server) - Self-hosted release server with front-end & auto-updater support.
218 | - [electron-rebuild](https://github.com/electron/electron-rebuild) - Rebuild native Node.js modules against the currently installed Electron version.
219 | - [debug-menu](https://github.com/parro-it/debug-menu) - Chrome-like "inspect element" context-menu.
220 | - [electron-installer-debian](https://github.com/unindented/electron-installer-debian) - Create a Debian package.
221 | - [electron-installer-redhat](https://github.com/unindented/electron-installer-redhat) - Create a Red Hat package.
222 | - [electron-installer-windows](https://github.com/unindented/electron-installer-windows) - Create a Windows package.
223 | - [electron-download](https://github.com/electron-userland/electron-download) - Download the Electron release zip from GitHub.
224 | - [electron-osx-sign](https://github.com/electron-userland/electron-osx-sign) - Code-signing for macOS apps.
225 | - [ember-electron](https://github.com/felixrieseberg/ember-electron) - Build, test, and package Ember apps.
226 | - [electron-store](https://github.com/sindresorhus/electron-store) - Save and load data like user preferences, app state, cache, etc.
227 | - [electron-context-menu](https://github.com/sindresorhus/electron-context-menu) - Extensible context menu.
228 | - [NeDB](https://github.com/louischatriot/nedb) - Embedded persistent or in-memory database.
229 | - [RxDB](https://github.com/pubkey/rxdb) - A realtime NoSQL database.
230 | - [electron-devtools-installer](https://github.com/GPMDP/electron-devtools-installer) - Install DevTools extensions from the Chrome Web Store.
231 | - [electron-log](https://github.com/megahertz/electron-log) - Simple logging.
232 | - [electron-about-window](https://github.com/rhysd/electron-about-window) - 'About This App' window.
233 | - [elemon](https://github.com/manidlou/elemon) - Live-reload your app during development.
234 | - [electron-is-accelerator](https://github.com/brrd/electron-is-accelerator) - Check if a string is a valid accelerator.
235 | - [electron-pdf-window](https://github.com/gerhardberger/electron-pdf-window) - View PDF files in browser windows.
236 | - [got](https://github.com/sindresorhus/got) - Simplified HTTP requests.
237 | - [electron-unhandled](https://github.com/sindresorhus/electron-unhandled) - Catch unhandled errors and promise rejections.
238 | - [electron-util](https://github.com/sindresorhus/electron-util) - Useful utilities for developing apps and modules.
239 | - [electron-reloader](https://github.com/sindresorhus/electron-reloader) - Simple auto-reloading during development.
240 | - [electron-serve](https://github.com/sindresorhus/electron-serve) - Static file serving (Useful for routing, like `react-router`).
241 | - [electron-timber](https://github.com/sindresorhus/electron-timber) - Pretty logger.
242 | - [chromium-net-errors](https://github.com/maxkueng/chromium-net-errors) - Chromium's network errors as custom error classes.
243 | - [run-electron](https://github.com/sindresorhus/run-electron) - Run Electron without all the junk terminal output.
244 | - [debugtron](https://github.com/pd4d10/debugtron) - Debug in-production Electron-based apps.
245 | - [electron-better-ipc](https://github.com/sindresorhus/electron-better-ipc) - Simplified IPC communication.
246 | - [electron-chrome-extension](https://github.com/getstation/electron-chrome-extension) - Add support for Chrome extensions.
247 | - [trilogy](https://github.com/citycide/trilogy) - TypeScript SQLite database layer with support for both native C++ and pure JavaScript backends.
248 | - [adblocker-electron](https://github.com/cliqz-oss/adblocker/tree/master/packages/adblocker-electron) - Block ads and trackers.
249 | - [electronmon](https://github.com/catdad/electronmon) - Monitor and reload apps out-of-process during development.
250 | - [electronegativity](https://github.com/doyensec/electronegativity) - Identify misconfigurations and security anti-patterns.
251 | - [UpdateRocks!](https://www.update.rocks) - Auto-update service. Free for open source projects.
252 | - [electron-vite](https://github.com/alex8088/electron-vite) - Fast and easy-to-use build tool integrated with Vite.
253 | - [pluggable-electron](https://github.com/dutchigor/pluggable-electron) - Build apps that can be extended through plugins.
254 | - [Hydraulic Conveyor](https://hydraulic.dev) - CLI tool that deploys apps without needing any special update servers, multi-platform CI, or code changes.
255 | - [Aptabase](https://aptabase.com/for-electron) - Analytics for apps. Open source, privacy-friendly, and simple.
256 |
257 | ### Using Electron
258 |
259 | - [nativefier](https://github.com/jiahaog/nativefier) - Create an app of any website.
260 | - [electron-stream](https://github.com/juliangruber/electron-stream) - Streaming wrapper.
261 | - [electron-pdf](https://github.com/fraserxu/electron-pdf) - Generate PDF from URL, HTML, or Markdown files on the command-line.
262 | - [electron-mocha](https://github.com/jprichardson/electron-mocha) - Run Mocha tests in Electron.
263 | - [Reactotron](https://github.com/reactotron/reactotron) - Inspect your React and React Native apps.
264 | - [jest-electron](https://github.com/hustcc/jest-electron) - Run and debug Jest unit tests in a browser environment.
265 |
266 | ## Components
267 |
268 | - [menubar](https://github.com/maxogden/menubar) - Menubar app framework.
269 | - [React Desktop](https://github.com/gabrielbull/react-desktop) - UI toolkit for macOS and Windows built with React.
270 | - [chrome-tabs](https://github.com/adamschwartz/chrome-tabs) - Chrome like tabs.
271 | - [Xel](https://xel-toolkit.org) - Widget toolkit for building native-like apps.
272 |
273 | ## Documentation
274 |
275 | - [Quick Start](https://electronjs.org/docs/tutorial/quick-start)
276 | - [Official docs](https://electronjs.org/docs)
277 | - [Essential Electron](http://jlord.us/essential-electron/) - Concise overview.
278 |
279 | ## Articles
280 |
281 | - [Electron Fundamentals](http://maxogden.com/electron-fundamentals.html)
282 | - [Building a desktop application with Electron](https://medium.com/@bojzi/building-a-desktop-application-with-electron-204203eeb658)
283 | - [Codesigning your app for macOS](http://jbavari.github.io/blog/2015/08/14/codesigning-electron-applications/)
284 | - [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)
285 | - [Building a desktop app with Electron, React, and Redux](https://anadea.info/blog/building-desktop-app-with-electron)
286 | - [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.
287 | - [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.
288 | - [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.
289 | - [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.
290 | - [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.
291 | - [Notarizing your Electron app](https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/) - How to configure your app packaging for Apple's notarization.
292 | - [Making Electron apps feel native on Mac](https://getlotus.app/21-making-electron-apps-feel-native-on-mac)
293 |
294 | ## Books
295 |
296 | - [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) 💲
297 | - [Electron in Action](https://www.manning.com/books/electron-in-action?a_aid=electroninaction) 💲
298 | - [Cross-Platform Desktop Applications](https://www.manning.com/books/cross-platform-desktop-applications) 💲
299 |
300 | ## Videos
301 |
302 | - [Getting Started with Electron 1.x](https://www.youtube.com/watch?v=jKzBJAowmGg)
303 | - [Packaging and Distributing Electron Desktop Apps](https://www.youtube.com/watch?v=dz5SnmBzBXc)
304 | - [Multi Window Electron Desktop Apps](https://www.youtube.com/watch?v=K-H2amwQ_pU)
305 | - [The State of Electron](https://www.youtube.com/watch?v=RaPmi-33rfc)
306 | - [Cross-Platform Desktop Apps with Electron](https://www.youtube.com/watch?v=9xX_G0l5jLU)
307 | - [Building Native Desktop apps using Electron](https://www.youtube.com/watch?v=nXIrFq5-FC8)
308 | - [The New Desktop: Electron, React, & Pixel-Perfect Native-Feeling Experiences](https://www.youtube.com/watch?v=jRPUB-D1Wx0)
309 | - [Building Desktop Apps with Node.js and Electron](https://www.youtube.com/watch?v=rbSvc8_BHaw)
310 | - [Electron Fundamentals course - Pluralsight](https://www.pluralsight.com/courses/electron-fundamentals) 💲
311 | - [Electron: Building Cross Platform Desktop Apps - Lynda](https://www.lynda.com/Electron-tutorials/Electron-Building-Cross-Platform-Desktop-Apps/518051-2.html) 💲
312 | - [Build a desktop application with Electron - Egghead](https://egghead.io/courses/build-a-desktop-application-with-electron) 💲
313 | - [Build Cross-Platform Desktop Apps with Electron - Frontend Masters](https://frontendmasters.com/courses/electron/) 💲
314 | - [Electron Meetup SF, November 2017](https://www.youtube.com/watch?v=DDjVaHPvRdM) - Includes some good talks on improving app startup time, debugging crashes, etc.
315 | - [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.
316 |
317 | ## Podcasts
318 |
319 | - [Hanselminutes: Creating cross-platform Electron apps with Jessica Lord](http://hanselminutes.com/534/creating-cross-platform-electron-apps-with-jessica-lord)
320 | - [The Changelog #216: GitHub's Electron with Zeke Sikelianos](https://changelog.com/podcast/216)
321 | - [Full Stack Radio #48: Jessica Lord - Building Desktop Apps with Electron](http://www.fullstackradio.com/48)
322 |
323 | ## Community
324 |
325 | - [Reddit](https://www.reddit.com/r/electronjs)
326 | - [Stack Overflow](https://stackoverflow.com/questions/tagged/electron)
327 | - [`@electronjs` on Twitter](https://twitter.com/electronjs)
328 | - [electron-br](https://electron-br.slack.com) *(Brazilian Portuguese)*
329 | - [electron-pl](https://electronpl.github.io) *(Polish)*
330 | - [`@electron_ru` on Telegram](https://telegram.me/electron_ru) *(Russian)*
331 | - [`electronjs` on Facebook](https://www.facebook.com/groups/electronjs/)
332 | - [Product Hunt](https://www.producthunt.com/@sindresorhus/collections/electron-apps)
333 |
334 | ## Contribute
335 |
336 | Contributions welcome! Read the [contribution guidelines](contributing.md) first.
337 |
338 | ## Related
339 |
340 | - [awesome-nodejs](https://github.com/sindresorhus/awesome-nodejs)
341 | - [awesome-electronjs-hacking](https://github.com/doyensec/awesome-electronjs-hacking)
342 |
--------------------------------------------------------------------------------