Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Electron 1.0 at GitHub Satellite, Amsterdam 2016
Search
Jessica
May 11, 2016
Technology
0
110
Electron 1.0 at GitHub Satellite, Amsterdam 2016
Electron background plus the Electron 1.0 launch!
Jessica
May 11, 2016
Tweet
Share
More Decks by Jessica
See All by Jessica
Building up the Electron Project: Team & Community Engineering
jllord
0
130
Scale Down, People Up
jllord
3
240
OMG Spreadsheets
jllord
0
180
Render 2017
jllord
0
160
Electron: A Tale of Two Processes
jllord
0
310
Nativize is the new Normalize
jllord
5
560
Electron — GitHub Universe 2015
jllord
0
140
Git-it, Share it
jllord
1
520
Other Decks in Technology
See All in Technology
オプトインカメラ:UWB測位を応用したオプトイン型のカメラ計測
matthewlujp
0
170
プロダクト開発を加速させるためのQA文化の築き方 / How to build QA culture to accelerate product development
mii3king
1
260
KubeCon NA 2024 Recap / Running WebAssembly (Wasm) Workloads Side-by-Side with Container Workloads
z63d
1
240
開発生産性向上! 育成を「改善」と捉えるエンジニア育成戦略
shoota
2
320
継続的にアウトカムを生み出し ビジネスにつなげる、 戦略と運営に対するタイミーのQUEST(探求)
zigorou
0
530
Amazon Kendra GenAI Index 登場でどう変わる? 評価から学ぶ最適なRAG構成
naoki_0531
0
100
re:Invent 2024 Innovation Talks(NET201)で語られた大切なこと
shotashiratori
0
310
大幅アップデートされたRagas v0.2をキャッチアップ
os1ma
2
530
10分で学ぶKubernetesコンテナセキュリティ/10min-k8s-container-sec
mochizuki875
3
330
Snowflake女子会#3 Snowpipeの良さを5分で語るよ
lana2548
0
230
Qiita埋め込み用スライド
naoki_0531
0
3.7k
終了の危機にあった15年続くWebサービスを全力で存続させる - phpcon2024
yositosi
1
1.8k
Featured
See All Featured
How GitHub (no longer) Works
holman
311
140k
Building Flexible Design Systems
yeseniaperezcruz
327
38k
Put a Button on it: Removing Barriers to Going Fast.
kastner
59
3.6k
StorybookのUI Testing Handbookを読んだ
zakiyama
27
5.3k
[RailsConf 2023] Rails as a piece of cake
palkan
53
5k
4 Signs Your Business is Dying
shpigford
181
21k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
We Have a Design System, Now What?
morganepeng
51
7.3k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.3k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
48k
Transcript
How people build software ! ELECTRON GitHub Satellite, Amsterdam 2016
How people build software " Hello Satellite! Jessica Lord Engineer
at GitHub on Electron 2 "
How people build software " Electron Framework for building cross
platform desktop applications with web technologies. 3
How people build software " A foundation for Atom GitHub
needed a tool to build our text editor Atom on—with JavaScript, HTML and CSS. 4 #
How people build software " Open source When Atom launched
it open sourced everything, including Electron, then called Atom Shell. 5 $
How people build software " Built on Electron Since its
release 2 years ago many companies and developers have built projects with Electron. 6 %
How people build software " Electron downloads 7 "
How people build software " Built on Electron 8 "
How people build software " Built on Electron 9 "
Microsoft Visual Studio Code
How people build software " Built on Electron 10 "
Brave
How people build software " Built on Electron 11 "
How people build software " Built on Electron 12 "
Wordpress
How people build software " Built on Electron 13 "
WhatsApp
How people build software " Tools for Electron Modules written
by the community are downloaded tens of thousands of times a month. 14 &
How people build software " Community Over 300 people have
contributed to Electron itself, not to mention the community packages. 15 '
How people build software " Electron features Electron enables you
to build your app once, package and ship it to three platforms. 16 "
How people build software " Chromium & Node.js Electron combines
Chromium’s rendering library with the full Node.js API into a single runtime with one V8. 17 "
How people build software " 18 ( " CHROME •
Use great Chrome features like CSS variables. • Use the latest Chrome releases. Design and code for one browser
How people build software " 19 ) " NODE.JS •
The full Node.js API is available in Electron. • File system, sockets, child processes. Native code optional
How people build software " 20 " Node.js in every
context <script>document.write(process.versions.node)</script>
How people build software " 21 " Node.js in every
context <script> require(‘./app.js’) </script>
How people build software " 22 # " NPM •
Use any of the 200,000 npm packages in your app. • 800 electron specific packages. Native code optional
How people build software " 23 * " V8 •
Use over 90% of ES6 without a compiler. • Use C++ extensions when needed. Design and code for one browser
How people build software " 24 + " THREE PLATFORMS
• Electron apps work on Mac, Windows and Linux. • Electron has an ARM distribution. Build once, ship three places
How people build software " 25 % " INSTALLERS AND
AUTO UPDATER • Electron includes Windows installers. • Auto update is available for Windows and Mac. Build once, ship three places
How people build software " How Electron works Each of
the two processes has the full Node.js API and interprocess communication between the two. 26 ,
How people build software " Main Process The lifecycle of
your app, the heavy lifter. 27 ♥
How people build software " Renderer Process The webpage. 28
.
How people build software " Electron’s two processes 29 "
ipc ipc Communicates Node.js API DOM Renderer Main Web Page Creates App Electron API Node.js API Electron API
How people build software " Electron API modules 30 "
BROWSER WINDOW DIALOG CLIPBOARD DESKTOP CAPTURER GLOBAL SHORTCUT MENU POWER SAVE BLOCKER TRAY and more…
How people build software " Electron’s two processes 31 "
Renderer Main Web Page App Renderer Renderer Renderer
How people build software " That’s great! Electron has been
useful for many teams, it has an active community and we all get how to use it now. 32 /
How people build software " 33
How people build software " Electron 1.0 Today we’re shipping
Electron 1.0 along with new Electron learning and development tools. 34 0
How people build software " API 1.0 API stability and
maturity. Chromium 49. Node 5.10.0. Mac App Store. 35 ⚡
How people build software " API 1.0 New APIs for
protocol, touch and swipe events, system preferences (and more). 36 ⚡
How people build software " API Demos An Electron application
demoing Electron APIs with sample code you can re-use. 37 "
How people build software " 38
How people build software " Play along Use sample code
and the Quick Start app to build an app or add a new demo, the app is open source. 39 '
How people build software " electron.atom.io/#get-started Visit the website and
download the latest release. 40 "
How people build software " Devtron A Chrome DevTools extension
for inspecting your Electron app dependencies and processes. 41 "
How people build software " Event inspector 42 "
How people build software " Require graph 43 "
How people build software " Linter 44 "
How people build software " IPC monitor 45 "
How people build software " electron.atom.io/devtron Open source in the
Electron organization on GitHub. 46 "
How people build software " Spectron Write integration tests for
you Electron app. Built on top of ChromeDriver and WebDriverIO. 47 "
How people build software " 48
How people build software " electron.atom.io/spectron Open source in the
Electron organization on GitHub. 49 "
How people build software " Documentation The new and improved
electron.atom.io site. 50 "
How people build software " 51
How people build software " 52
How people build software " 53
How people build software " 54
How people build software " Build an app! It’s easier
than you think—if you can build a website, you can build a desktop app. 55 "
How people build software " Electron Team 56 " @ZCBENZ
@KEVINSAWICKI @JLORD @ZEKE Here! Here! @SIMURAI @IOLSEN Here!
How people build software " 57 ELECTRON.ATOM.IO