├── .gitattributes
├── .editorconfig
├── .github
└── pull_request_template.md
├── electron-logo.svg
├── contributing.md
├── code-of-conduct.md
└── readme.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | readme.md merge=union
3 |
--------------------------------------------------------------------------------
/.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 | - If you just created something, wait at least 20 days before submitting.
11 | - Search previous suggestions before making a new one, as yours may be a duplicate.
12 | - If you're submitting a closed source app, include evidence of it being built with Electron.
13 | - The "Closed Source" section has a very high bar for acceptance. You're at 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](http://electron.atom.io/apps/).
14 | - 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.
15 | - Submitted packages should be tested and documented.
16 | - Make an individual pull request for each suggestion.
17 | - Use the following format: `[title](link) - Description.`
18 | - Additions should be added to the bottom of the relevant section.
19 | - Keep descriptions short and simple, but descriptive.
20 | - Start the description with a capital and end with a full stop/period.
21 | - Don't mention `Electron` in the description as it's implied.
22 | - Don't start the description with `A` or `An`.
23 | - Check your spelling and grammar.
24 | - Make sure your text editor is set to remove trailing whitespace.
25 | - New categories or improvements to the existing categorization are welcome, but should be done in a separate pull request.
26 |
27 | Thank you for your suggestion!
28 |
29 | ### Updating your PR
30 |
31 | 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.
32 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Awesome Electron [](https://github.com/sindresorhus/awesome)
2 |
3 | [](http://electron.atom.io)
4 |
5 | > Useful resources for creating apps with [Electron](http://electron.atom.io)
6 |
7 | You might also like [awesome-nodejs](https://github.com/sindresorhus/awesome-nodejs).
8 |
9 |
10 | ## Contents
11 |
12 | - [Apps](#apps)
13 | - [Boilerplates](#boilerplates)
14 | - [Tools](#tools)
15 | - [Components](#components)
16 | - [Documentation](#documentation)
17 | - [Articles](#articles)
18 | - [Books](#books)
19 | - [Videos](#videos)
20 | - [Podcasts](#podcasts)
21 | - [Community](#community)
22 | - [Tips](#tips)
23 |
24 |
25 | ## Apps
26 |
27 | Made with Electron.
28 |
29 | ### Open Source
30 |
31 | ###### Featured
32 |
33 | - [Hyper](https://github.com/zeit/hyper) - Terminal.
34 | - [WebTorrent](https://github.com/feross/webtorrent-app) - Streaming torrent client.
35 | - [Kap](https://github.com/wulkano/kap) - Screen recorder with GIF support.
36 | - [Min](https://github.com/minbrowser/min) - Minimal web browser.
37 | - [Mancy](https://github.com/princejwesley/Mancy) - JavaScript REPL.
38 | - [SpaceRadar](https://github.com/zz85/space-radar) - Interactive disk space and memory visualization.
39 | - [Nocturn](https://github.com/k0kubun/Nocturn) - Twitter client.
40 | - [Mojibar](https://github.com/muan/mojibar) - Emoji searcher in your menubar.
41 | - [Playback](https://github.com/mafintosh/playback) - Video player.
42 | - [Black Screen](https://github.com/shockone/black-screen) - Terminal.
43 | - [Atom](https://github.com/atom/atom) - Code editor.
44 | - [Visual Studio Code](https://github.com/Microsoft/vscode) - Cross-platform IDE.
45 | - [Nylas N1](https://github.com/nylas/N1) - Extensible email client.
46 | - [Brave](https://github.com/brave/browser-laptop) - Privacy-focused web browser.
47 |
48 | ###### Other
49 |
50 | - [Git-it](https://github.com/jlord/git-it-electron) - Teaches you Git and GitHub.
51 | - [Caprine](https://github.com/sindresorhus/caprine) - Unofficial Facebook Messenger app.
52 | - [Simplenote](https://github.com/Automattic/simplenote-electron) - Note keeper.
53 | - [nuTorrent](https://github.com/LeeChSien/nuTorrent) - BitTorrent client.
54 | - [Abricotine](https://github.com/brrd/Abricotine) - Markdown editor with inline preview.
55 | - [Medis](https://github.com/luin/medis) - Redis database management.
56 | - [Kakapo](https://github.com/bluedaniel/kakapo-app) - Ambient sound mixer for relaxation or productivity.
57 | - [SmartMirror](https://github.com/evancohen/smart-mirror) - Voice controlled smart mirror.
58 | - [Koko](https://github.com/hachibasu/koko) - IRC client.
59 | - [KeeWeb](https://github.com/keeweb/keeweb) - Unofficial KeePass app.
60 | - [Soundcast](https://github.com/andresgottlieb/soundcast) - Cast macOS audio to Chromecast from your menubar.
61 | - [Gitify](https://github.com/ekonstantinidis/gitify) - GitHub notifications in your menubar.
62 | - [Friends](https://github.com/moose-team/friends) - P2P chat.
63 | - [Cumulus](https://github.com/gillesdemey/Cumulus) - SoundCloud player in your menubar.
64 | - [Kitematic](https://kitematic.com) - Docker container management.
65 | - [FatFileFinder](https://github.com/pwambach/fat-file-finder) - Find large files on your machine.
66 | - [ScreenCat](https://github.com/maxogden/screencat) - Screen sharing & remote collaboration.
67 | - [Gulp](https://github.com/sindresorhus/gulp-app) - Run Gulp tasks from your menubar.
68 | - [Mapbox Studio](https://github.com/mapbox/mapbox-studio) - Map designer.
69 | - [LevelUI](https://github.com/hij1nx/levelui) - LevelDB management.
70 | - [Kart](https://github.com/maddox/kart) - Front-end for RetroArch.
71 | - [Vmd](https://github.com/yoshuawuyts/vmd) - Preview Markdown files.
72 | - [Kyoku](https://github.com/cheeaun/kyoku) - Displays current iTunes song.
73 | - [GReader](https://github.com/Nekle/greader) - Collect and read offline readme files of GitHub repos.
74 | - [Leanote](https://github.com/leanote/desktop-app) - Cloud notepad.
75 | - [Snapper](https://github.com/prt2121/Snapper) - Screen capturing & recording for Android devices.
76 | - [Imagemin](https://github.com/imagemin/imagemin-app) - Minify images.
77 | - [We Build SG](https://github.com/webuildsg/osx) - Upcoming events & recently updated repos from webuild.sg.
78 | - [Piglet](https://github.com/jenslind/piglet) - Run Grunt tasks from your menubar.
79 | - [Yoda](https://github.com/whoisandie/yoda) - Browse and download YouTube videos.
80 | - [Loop Drop](https://github.com/mmckegg/loop-drop-app) - MIDI looper and synth for live electronic music performances.
81 | - [Toby](https://github.com/frankhale/toby) - YouTube player.
82 | - [Kaku](https://github.com/EragonJ/Kaku) - Music player.
83 | - [Yeoman](https://github.com/yeoman/yeoman-app) - Scaffold projects using Yeoman.
84 | - [Markn](https://github.com/minodisk/markn) - Markdown viewer.
85 | - [Shiba](https://github.com/rhysd/Shiba) - Live Markdown preview with linting.
86 | - [Yays](https://github.com/Bahlaouane-Hamza/Yays) - YouTube music player in your menubar.
87 | - [TimoFM](https://github.com/sapjax/TimoFM) - DoubanFM music player.
88 | - [Monu](https://github.com/maxogden/monu) - Process monitoring.
89 | - [Tèsèvè](https://teseve.github.io) - Static webserver.
90 | - [DevDogs](https://github.com/ragingwind/devdogs) - Unofficial DevDocs.io app.
91 | - [DevDocs](https://github.com/egoist/devdocs-app) - Unofficial DevDocs.io app.
92 | - [Trendy](https://rhysd.github.io/Trendy/) - Trending GitHub repos in your menubar.
93 | - [google-music-electron](https://github.com/twolfson/google-music-electron) - Unofficial Google music app.
94 | - [Pomodoro](https://g07cha.github.io/pomodoro/) - Timer based on the Pomodoro Technique.
95 | - [Sia-UI](http://sia.tech) - Decentralized file storage system based on cryptocurrency technology.
96 | - [MarkRight](https://github.com/dvcrn/markright) - GitHub flavored Markdown editor with live preview.
97 | - [Mongotron](https://github.com/officert/mongotron) - MongoDB management tool.
98 | - [Colonizers](https://github.com/colonizers/colonizers-desktop) - "Catan" inspired board game.
99 | - [Eintopf](https://github.com/mazehall/eintopf) - Manage development projects with Docker.
100 | - [WhatsDesktop](https://github.com/mawie81/whatsdesktop) - Unofficial WhatsApp app.
101 | - [Sqlectron](https://github.com/sqlectron/sqlectron-gui) - SQL client.
102 | - [docker-indicator](https://github.com/khornberg/docker-indicator) - Unofficial Docker menubar app.
103 | - [Light Table](https://github.com/LightTable/LightTable) - Code editor with instant feedback.
104 | - [Tubehead](https://github.com/makotot/Tubehead) - YouTube music player in your menubar.
105 | - [Google Play Music Desktop Player](https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-) - Unofficial Google Play Music app.
106 | - [Chrome DevTools](https://github.com/auchenberg/chrome-devtools-app) - Chrome DevTools packaged as an app.
107 | - [Yeobara](https://github.com/yeobara/yeobara-desktop) - Meetup check-in with beacon.
108 | - [Proton](https://github.com/steventhanna/proton) - Markdown editor with live preview.
109 | - [James](https://github.com/uxebu/james) - HTTP proxy to view and intercept browser requests.
110 | - [DTCP](https://github.com/alchen/DTCP) - Twitter client.
111 | - [Inbox](https://github.com/fgnass/inbox-app) - Unofficial Google Inbox app.
112 | - [alienbox](http://a9.io/alienbox/) - Reddit inbox & notifier in your menubar.
113 | - [tweet-rec](https://github.com/midnightSuyama/tweet-rec) - Tweet recording player.
114 | - [Snippet Bar](https://github.com/teesloane/snippet-bar) - Copy-paste & re-use text snippets in your menubar.
115 | - [Electronic WeChat](https://github.com/geeeeeeeeek/electronic-wechat) - Unofficial WeChat app.
116 | - [dida](https://github.com/xwartz/dida) - Add tasks to TickTick (滴答清单).
117 | - [FromScratch](https://github.com/kilian/fromscratch) - Autosaving scratchpad.
118 | - [Hawkpass](https://github.com/kalpetros/hawkpass-desktop) - Password generator.
119 | - [Gokotta](https://github.com/Zhangdroid/Gokotta) - Music player.
120 | - [Shake](https://github.com/lumios/shake) - Japanese Earthquake Early Warning Notifier.
121 | - [Fog](https://github.com/vitorgalvao/fog) - Unofficial Overcast podcast app.
122 | - [Wmail](https://github.com/Thomas101/wmail) - Unofficial Gmail & Google Inbox app.
123 | - [Boostnote](https://github.com/BoostIO/Boostnote) - Markdown note & code snippet app for developers.
124 | - [Before Dawn](https://github.com/muffinista/before-dawn) - Screensaver tool.
125 | - [Active Collab](https://github.com/nurtext/active-collab-desktop) - Unofficial Active Collab app.
126 | - [Hain](https://github.com/appetizermonster/hain) - Launcher for Windows.
127 | - [Catify](https://github.com/MeoBeoI/Catify) - Utility for Spotify.
128 | - [Minira](https://github.com/jenslind/minira) - JIRA issues in your menubar.
129 | - [Ansel](https://github.com/m0g/ansel) - Image organizer.
130 | - [Cuttle](https://github.com/oakmac/cuttle) - UI for the ClojureScript compiler.
131 | - [Build Checker App](https://github.com/willmendesneto/build-checker-app) - Check CI-server build statuses.
132 | - [Backer Timetracker](https://github.com/MayGo/backer-timetracker) - Tracks your time.
133 | - [Ghost](https://github.com/tryghost/ghost-desktop) - Professional publishing platform.
134 | - [Anatine](https://github.com/sindresorhus/anatine) - Pristine Twitter app.
135 | - [Mattermost](https://github.com/mattermost/desktop) - Mattermost client.
136 | - [PupaFM](https://github.com/xwartz/PupaFM) - DoubanFM music player.
137 | - [MediumDesk](https://github.com/sivragav/mediumdesk) - Unofficial Medium app.
138 | - [Lightgallery](https://github.com/sachinchoolur/lightgallery-desktop) - Image viewer.
139 | - [Crypter](https://github.com/HR/Crypter) - Secure encryption client.
140 | - [YakYak](https://github.com/yakyak/yakyak) - Unofficial Google Hangouts app.
141 | - [Museeks](https://github.com/KeitIG/museeks) - Music player.
142 | - [VOX](https://github.com/fresk-nc/VOX) - Unofficial VOX music player.
143 | - [Sabaki](http://sabaki.yichuanshen.de) - Go/Baduk/Weiqi board.
144 | - [Marky](https://github.com/vesparny/marky) - Markdown editor.
145 | - [Deco](https://github.com/decosoftware/deco-ide) - React Native IDE.
146 | - [Toshocat](https://github.com/tofuness/Toshocat) - Anime/Manga Progress Tracker.
147 | - [iStats](https://github.com/ningt/iStats) - CPU and memory stats on your menubar.
148 | - [Wire](https://github.com/wireapp/wire-desktop) - Messenger and calling app.
149 | - [Ramme](https://github.com/terkelg/ramme) - Unofficial Instagram app.
150 | - [Moonview](https://github.com/teesloane/moonview) - Ambient notepad.
151 | - [Temps](https://jackd248.github.io/temps/) - Weather forecast in your menubar.
152 | - [DBGlass](https://github.com/web-pal/DBGlass) - PostgreSQL client.
153 | - [Slide Beacon](https://github.com/dermike/slide-beacon-app) - Physical web beacon broadcast.
154 | - [Rambox](https://github.com/saenzramiro/rambox) - Chat and email app that combines multiple services like Discord, Hangouts, Gmail and Outlook.
155 | - [Extraterm](https://github.com/sedwards2009/extraterm) - Terminal.
156 | - [Materialette](https://github.com/mike-schultz/materialette) - Material design color palette in your menubar.
157 | - [Dext](https://github.com/vutran/dext) - Launcher.
158 | - [PB for Desktop](https://github.com/sidneys/pb-for-desktop) - Pushbullet client.
159 | - [GroupMe](https://github.com/dcrousso/GroupMe) - Unofficial GroupMe app.
160 | - [ndm](https://github.com/720kb/ndm) - npm desktop manager.
161 | - [GIFBar](https://github.com/dcrousso/GIFBar) - Search GIFs in your menubar.
162 | - [Stacer](https://github.com/oguzhaninan/Stacer) - Ubuntu system optimizer.
163 | - [Zazu](https://github.com/tinytacoteam/zazu) - Launcher.
164 | - [Inpad](https://github.com/sarah-seo/Inpad) - Notes app with GitHub-flavored Markdown.
165 | - [Cerebro](https://github.com/KELiON/cerebro) - Launcher with inline previews.
166 | - [Desktop Dimmer](https://github.com/sidneys/desktop-dimmer) - Control the brightness of any display.
167 | - [LosslessCut](https://github.com/mifi/lossless-cut) - Lossless video trimming & cutting.
168 | - [Wexond](https://github.com/sential/wexond) - Web browser with material UI and extensions API.
169 |
170 | ### Closed Source
171 |
172 | - [GitKraken](http://www.gitkraken.com) - Git client.
173 | - [1Clipboard](http://1clipboard.io) - Universal clipboard manager.
174 | - [Franz](http://meetfranz.com) - Skype, Slack, Hangouts, WhatsApp, Grape, Telegram, FB Messenger, Hipchat in the same app.
175 | - [Postman](https://www.getpostman.com) - Create and send HTTP requests.
176 | - [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.
177 | - [Avocode](http://avocode.com) - Share design and collaborate.
178 | - [Pixate](http://www.pixate.com) - Mobile interaction designer.
179 | - [Prepros](https://prepros.io) - Compile almost any preprocessing language with live browser refresh.
180 | - [Stremio](http://www.strem.io) - Media center.
181 | - [Typetalk](http://www.typetalk.in) - Share and discuss ideas with your team through instant messaging.
182 | - [Pingendo](http://pingendo.com) - Bootstrap prototyping.
183 | - [Spreaker Studio](https://www.spreaker.com/download) - Audio recording and broadcasting.
184 | - [MockingBot](https://mockingbot.com) - Prototyping tool for designing apps.
185 | - [Caret](http://caret.io) - Markdown editor.
186 | - [Wagon](https://www.wagonhq.com) - SQL editor.
187 | - [SIV](http://www.integritytools.com/siv/) - Image viewer.
188 | - [Wantedly Chat](https://www.wantedly.com/chat) - Business team chat. *(Japanese)*
189 | - [Remember](https://rememberapp.co.kr) - Business card management. *(Korean)*
190 | - [Pubu](https://pubu.im) - Real-time chat for team communication. *(Chinese)*
191 | - [BearyChat](https://bearychat.com) - Team messaging service. *(Chinese)*
192 | - [MongoDB Compass](https://www.mongodb.com/products/compass) - Official MongoDB app.
193 | - [Freeter](https://freeter.io) - Organizer for freelancers & creatives.
194 | - [WhatsApp](https://www.whatsapp.com/download/) - Official WhatsApp app.
195 | - [CatLight](https://catlight.io) - Build status notifier.
196 | - [Paws](http://friendlyfox.es/paws/) - Trello client.
197 | - [Automint](http://automint.in) - CRM for automobile businesses.
198 | - [CrossCloud](https://medium.com/@crosscloud/what-is-new-in-crosscloud-1-0-c00404e7bf9f) - Secure sync for multiple cloud storages.
199 | - [Discord](https://discordapp.com) - Voice and text chat for gamers.
200 | - [Cocos Creator](http://cocos2d-x.org/products#creator) - Game editor for creating web and native games for Cocos2D-x.
201 | - [Inkdrop](https://www.inkdrop.info) - Markdown notebook for hackers.
202 | - [Exodus](https://www.exodus.io) - Secure, manage, and exchange blockchain assets like Bitcoin and Ethereum.
203 | - [Hackolade](http://hackolade.com) - Data modeling for NoSQL and multi-model databases.
204 |
205 | ### Samples
206 |
207 | - [Electron API usage](https://github.com/hokein/electron-sample-apps) - Sample apps illustrating usage of Electron APIs.
208 | - [Screen Recorder](https://github.com/hokein/electron-screen-recorder) - WebRTC screen recorder.
209 | - [Activity Monitor](http://electron.atom.io/blog/2017/01/19/simple-samples#activity-monitor) - Shows a doughnut chart of the CPU system, user, and idle activity time.
210 | - [Hash](http://electron.atom.io/blog/2017/01/19/simple-samples#hash) - Shows the hash values of entered text using different algorithms.
211 | - [Prices](http://electron.atom.io/blog/2017/01/19/simple-samples#prices) - Shows the current price of oil, gold, and silver using the Yahoo Finance API.
212 |
213 |
214 | ## Boilerplates
215 |
216 | - [electron-boilerplate](https://github.com/sindresorhus/electron-boilerplate) *(by sindresorhus)* - Boilerplate to kickstart creating an app.
217 | - [generator-electron](https://github.com/sindresorhus/generator-electron) - Scaffold out an app boilerplate.
218 | - [electron-boilerplate](https://github.com/szwacz/electron-boilerplate) *(by szwacz)* - Comprehensive boilerplate which even generates installers.
219 | - [electron-react-boilerplate](https://github.com/chentsulin/electron-react-boilerplate) - Boilerplate based on React and webpack.
220 | - [descjop](https://github.com/karad/lein_template_descjop) - ClojureScript boilerplate for creating an app.
221 | - [electron-quick-start](https://github.com/electron/electron-quick-start) - Clone the repo to try a simple app.
222 | - [bozon](https://github.com/railsware/bozon) - Scaffold, run, test, and package your app.
223 | - [electron-vue](https://github.com/SimulatedGREG/electron-vue) - Easily build your app with Vue and common plugins.
224 | - [SkelEktron](https://github.com/BZCoding/SkelEktron) - A ready to go app template with some useful features built-in.
225 |
226 |
227 | ## Tools
228 |
229 | ### For Electron
230 |
231 | - [electron-builder](https://github.com/electron-userland/electron-builder) - Create installers.
232 | - [electron-prebuilt](https://github.com/electron-userland/electron-prebuilt) - Install prebuilt Electron binaries for command-line use using npm.
233 | - [devtron](https://github.com/electron/devtron) - Official DevTools extension.
234 | - [electron-packager](https://github.com/electron-userland/electron-packager) - Package and distribute your app.
235 | - [electron-debug](https://github.com/sindresorhus/electron-debug) - Adds useful debug features.
236 | - [electron-is-dev](https://github.com/sindresorhus/electron-is-dev) - Check if Electron is running in development.
237 | - [electron-localshortcut](https://github.com/parro-it/electron-localshortcut) - Add keyboard shortcuts locally to a window.
238 | - [electron-gh-release](https://github.com/jenslind/electron-gh-releases) - Auto-update by releasing on GitHub.
239 | - [electron-release](https://github.com/jenslind/electron-release) - Publish a new release of your app to GitHub.
240 | - [electron-updater](https://github.com/evolvelabs/electron-updater) - Auto-updater leveraging npm to deploy updates.
241 | - [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.
242 | - [auto-launch](https://github.com/Teamwork/node-auto-launch) - Launch apps at system startup.
243 | - [nuts](https://github.com/GitbookIO/nuts) - Releases server with auto-updater and GitHub as a backend.
244 | - [electron-dl](https://github.com/sindresorhus/electron-dl) - Simplified file downloads.
245 | - [electron-release-server](https://github.com/ArekSredzki/electron-release-server) - Self-hosted release server with front-end & auto-updater support.
246 | - [electron-rebuild](https://github.com/electron/electron-rebuild) - Rebuild native Node.js modules against the currently installed Electron version.
247 | - [electron-compile](https://github.com/electron/electron-compile) - Use ES2015, CoffeeScript, Less, Stylus in your app without a precompilation step.
248 | - [electron-positioner](https://github.com/jenslind/electron-positioner) - Position windows at common spots.
249 | - [electron-window-state](https://github.com/mawie81/electron-window-state) - Persist window sizes and positions.
250 | - [electron-drag](https://github.com/kapetan/electron-drag) - Improved window dragging.
251 | - [debug-menu](https://github.com/parro-it/debug-menu) - Chrome-like "inspect element" context-menu.
252 | - [electron-installer-debian](https://github.com/unindented/electron-installer-debian) - Create a Debian package.
253 | - [electron-installer-redhat](https://github.com/unindented/electron-installer-redhat) - Create a Red Hat package.
254 | - [electron-installer-windows](https://github.com/unindented/electron-installer-windows) - Create a Windows package.
255 | - [electron-sudo](https://github.com/automation-stack/electron-sudo) - Subprocesses with administrative privileges.
256 | - [electron-json-storage](https://github.com/jviotti/electron-json-storage) - Write and read user settings.
257 | - [electron-download](https://github.com/electron-userland/electron-download) - Download the Electron release zip from GitHub.
258 | - [ipc-stream](https://github.com/jprichardson/electron-ipc-stream) - Duplex stream over IPC.
259 | - [is-electron-renderer](https://github.com/jprichardson/is-electron-renderer) - Check if your code is running in `main` or `renderer`.
260 | - [electron-osx-sign](https://github.com/electron-userland/electron-osx-sign) - Code-signing for macOS apps.
261 | - [electron-detach](https://github.com/parro-it/electron-detach) - Restart an Electron app as a detached process.
262 | - [ember-electron](https://github.com/felixrieseberg/ember-electron) - Build, test, and package Ember apps.
263 | - [electrify](https://github.com/arboleya/electrify) - Package Meteor apps.
264 | - [spectron](https://github.com/electron/spectron) - Test Electron apps using ChromeDriver.
265 | - [babel-preset-electron](https://github.com/emorikawa/babel-preset-electron) - Babel preset that only compiles what's necessary for a particular Electron version.
266 | - [electron-is](https://github.com/delvedor/electron-is) - Utility functions.
267 | - [electron-osx-appearance](https://github.com/danhp/electron-osx-appearance) - Simplified API for accessing macOS's appearance settings.
268 | - [electron-config](https://github.com/sindresorhus/electron-config) - Persist user settings and other data.
269 | - [electron-context-menu](https://github.com/sindresorhus/electron-context-menu) - Extensible context menu.
270 | - [electron-require](https://github.com/brrd/electron-require) - Simplified require.
271 | - [NeDB](https://github.com/louischatriot/nedb) - Embedded persistent or in-memory database.
272 | - [electron-devtools-installer](https://github.com/GPMDP/electron-devtools-installer) - Install DevTools extensions from the Chrome Web Store.
273 | - [electron-log](https://github.com/megahertz/electron-log) - Simple logging.
274 | - [electron-redux](https://github.com/hardchor/electron-redux) - Synchronize Redux state across windows.
275 | - [electron-vibrancy](https://github.com/arkenthera/electron-vibrancy) - Add vibrancy (blur) to windows.
276 | - [electron-about-window](https://github.com/rhysd/electron-about-window) - 'About This App' window.
277 | - [elemon](https://github.com/manidlou/elemon) - Live-reload your app during development.
278 | - [electron-is-accelerator](https://github.com/brrd/electron-is-accelerator) - Check if a string is a valid accelerator.
279 | - [electron-pdf-window](https://github.com/gerhardberger/electron-pdf-window) - View PDF files in browser windows.
280 | - [electron-router](https://github.com/m0n0l0c0/electron-router) - Router tidying up IPC message passing.
281 | - [electron-lets-move](https://github.com/tommoor/electron-lets-move) - Automatically move your app to `/Applications` on macOS.
282 |
283 | ### Using Electron
284 |
285 | - [devtool](https://github.com/Jam3/devtool) - Debug Node.js with Chrome DevTools.
286 | - [nativefier](https://github.com/jiahaog/nativefier) - Create an app of any website.
287 | - [electron-stream](https://github.com/juliangruber/electron-stream) - Streaming wrapper.
288 | - [Nightmare](http://www.nightmarejs.org) - High-level browser automation library (alternative to PhantomJS).
289 | - [electron-pdf](https://github.com/fraserxu/electron-pdf) - Generate PDF from URL, HTML, or Markdown files on the command-line.
290 | - [Geojsonapp](https://github.com/mick/geojsonapp) - Preview GeoJSON locally.
291 | - [electron-mocha](https://github.com/jprichardson/electron-mocha) - Run Mocha tests in Electron.
292 | - [electron-har](https://github.com/shyiko/electron-har) - Command-line tool for generating HTTP Archive (HAR).
293 | - [electron-windows-store](https://github.com/catalystcode/electron-windows-store) - Turn Electron apps into Windows Store AppX packages.
294 | - [Reactotron](https://github.com/reactotron/reactotron) - Inspect your React and React Native apps.
295 |
296 |
297 | ## Components
298 |
299 | - [Photon](http://photonkit.com) - UI toolkit for building beautiful apps.
300 | - [React PhotonKit](https://github.com/react-photonkit/react-photonkit) - Photon components built with React.
301 | - [menubar](https://github.com/maxogden/menubar) - Menubar app framework.
302 | - [cookies](https://github.com/hstove/electron-cookies) - Adds support for `document.cookie`.
303 | - [window](https://github.com/jprichardson/electron-window) - Create and manage windows.
304 | - [React Desktop](https://github.com/gabrielbull/react-desktop) - UI toolkit for macOS and Windows built with React.
305 | - [electron-input-menu](https://github.com/parro-it/electron-input-menu) - Context menu for input elements.
306 | - [chrome-tabs](https://github.com/adamschwartz/chrome-tabs) - Chrome like tabs.
307 | - [titlebar](https://github.com/kapetan/titlebar) - Emulate the macOS window titlebar.
308 | - [Brightwheel](https://github.com/loranallensmith/brightwheel) - Build and manage UI components with Photon and Etch.
309 |
310 |
311 | ## Documentation
312 |
313 | - [Quick Start](http://electron.atom.io/docs/tutorial/quick-start/)
314 | - [Official docs](http://electron.atom.io/docs/)
315 | - [Essential Electron](http://jlord.us/essential-electron/) - Concise overview.
316 |
317 |
318 | ## Articles
319 |
320 | - [Electron Fundamentals](http://maxogden.com/electron-fundamentals.html)
321 | - [Building a desktop application with Electron](https://medium.com/@bojzi/building-a-desktop-application-with-electron-204203eeb658)
322 | - [Codesigning your app for macOS](http://jbavari.github.io/blog/2015/08/14/codesigning-electron-applications/)
323 | - [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)
324 | - [How To Make Your Electron App Sexy](https://blog.dcpos.ch/how-to-make-your-electron-app-sexy)
325 | - [Electron Rocks!](http://electron.rocks) - Blog about working with Electron.
326 |
327 |
328 | ## Books
329 |
330 | - [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) 💲
331 |
332 |
333 | ## Videos
334 |
335 | - [Getting Started with Electron 1.x](https://www.youtube.com/watch?v=jKzBJAowmGg)
336 | - [Packaging and Distributing Electron Desktop Apps](https://www.youtube.com/watch?v=dz5SnmBzBXc)
337 | - [Multi Window Electron Desktop Apps](https://www.youtube.com/watch?v=K-H2amwQ_pU)
338 | - [The State of Electron](https://www.youtube.com/watch?v=RaPmi-33rfc)
339 | - [Cross-Platform Desktop Apps with Electron](https://www.youtube.com/watch?v=9xX_G0l5jLU)
340 | - [Building Native Desktop apps using Electron](https://www.youtube.com/watch?v=nXIrFq5-FC8)
341 | - [The New Desktop: Electron, React, & Pixel-Perfect Native-Feeling Experiences](https://www.youtube.com/watch?v=jRPUB-D1Wx0)
342 | - [Building Desktop Apps with Node.js and Electron](https://www.youtube.com/watch?v=rbSvc8_BHaw)
343 | - [Electron Fundamentals course - Pluralsight](https://www.pluralsight.com/courses/electron-fundamentals) 💲
344 | - [Electron: Building Cross Platform Desktop Apps - Lynda](https://www.lynda.com/Electron-tutorials/Electron-Building-Cross-Platform-Desktop-Apps/518051-2.html) 💲
345 |
346 |
347 | ## Podcasts
348 |
349 | - [JavaScript Jabber: Electron with Jessica Lord and Amy Palamountain](https://devchat.tv/js-jabber/193-jsj-electron-with-jessica-lord-and-amy-palamountain)
350 | - [Hanselminutes: Creating cross-platform Electron apps with Jessica Lord](http://hanselminutes.com/534/creating-cross-platform-electron-apps-with-jessica-lord)
351 | - [JavaScript Air: Electron Apps with @jlord and @emorikawa](https://javascriptair.com/episodes/2016-07-06)
352 | - [The Changelog #216: GitHub's Electron with Zeke Sikelianos](https://changelog.com/216/)
353 | - [Full Stack Radio #48: Jessica Lord - Building Desktop Apps with Electron](http://www.fullstackradio.com/48)
354 | - [NodeUp: Electron with Jessica Lord](http://nodeup.com/onehundredseven)
355 |
356 |
357 | ## Community
358 |
359 | - [Discuss](https://discuss.atom.io/c/electron)
360 | - [Reddit](https://www.reddit.com/r/electronjs)
361 | - [Stack Overflow](http://stackoverflow.com/questions/tagged/electron)
362 | - [`@electronjs` on Twitter](https://twitter.com/electronjs)
363 | - [`#atom-shell` on Freenode](http://webchat.freenode.net/?channels=atom-shell)
364 | - [`#electron` on Atom Slack](http://atom-slack.herokuapp.com)
365 | - [electron-jp](https://electron-jp-slackin.herokuapp.com) *(Japanese)*
366 | - [electron-br](https://electron-br.slack.com) *(Brazilian Portuguese)*
367 | - [electron-kr](http://www.meetup.com/electronkr) *(Korean)*
368 | - [`@electron_ru` on Telegram](https://telegram.me/electron_ru) *(Russian)*
369 | - [`electronjs` on Facebook](https://www.facebook.com/groups/electronjs/)
370 |
371 |
372 | ## Tips
373 |
374 | Contribute some ;)
375 |
376 |
377 | ## Contribute
378 |
379 | Contributions welcome! Read the [contribution guidelines](contributing.md) first.
380 |
381 |
382 | ## License
383 |
384 | [](https://creativecommons.org/publicdomain/zero/1.0/)
385 |
386 | To the extent possible under law, [Sindre Sorhus](http://sindresorhus.com) has waived all copyright and related or neighboring rights to this work.
387 |
--------------------------------------------------------------------------------