This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
186 lines (158 loc) · 5.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Electron</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
<style>
.reveal .footer {
position: absolute;
bottom: 1em;
left: 1em;
font-size: 0.5em;
}
</style>
</head>
<body>
<div class="reveal">
<div class='footer'>
TINF19B4 <br>
Software Engineering <br>
Lorenz Seufert
</div>
<div class="slides">
<section>
<h2>E-Portfolio Electron</h2>
<img src="images/Electron_Logo.png" width="350" height="350">
</section>
<section>
<h2><u>Table of Contents</u></h2>
<ul>
<li>What is Electron?</li>
<li>History of Electron</li>
<li>How does Electron work?</li>
<li>Pros and Cons</li>
<li>Simple Electron Application</li>
</ul>
</section>
<section>
<section><h2><u>What is Electron?</u></h2></section>
<section>
<ul>
<li class="fragment">Framework to create desktop applications</li>
<li class="fragment">With HTML, CSS and JavaScript</li>
<li class="fragment">Or other frameworks like React or Angular</li>
<li class="fragment">Cross platform applications</li>
<li class="fragment">Uses Node.js and Chromium</li>
</ul>
</section>
<section>
<div class="r-stack">
<img class="fragment fade-in-then-out" src="images/Discord_Logo.png" width="500" height="500">
<img class="fragment fade-in-then-out" src="images/Atom_Logo.png" width="500" height="500">
<img class="fragment fade-in-then-out" src="images/VSC_Logo.png" width="500" height="500">
</div>
</section>
</section>
<section>
<section><h2><u>History of Electron</u></h2></section>
<section>
<ul>
<li class="fragment">Started on 15.07.2013 at GitHub, to make cross platform development easier</li>
<li class="fragment">First called "Atom Shell"</li>
<li class="fragment">In 2014 it got Open Source</li>
<li class="fragment">In 2015 "Atom Shell" is now called "Electron"</li>
<li class="fragment">Originally build for Atom</li>
</ul>
</section>
</section>
<section>
<section><h2><u>How does Electron work?</u></h2></section>
<section>
<h2><u>The architecture</u></h2>
<br>
<ul>
<li class="fragment">Chromiums rendering library: Libchromiumcontent</li>
<li class="fragment">Node.js and npm</li>
<li class="fragment">C++ for common OS operations</li>
</ul>
</section>
<section>
<h2><u>Processes</u></h2>
</section>
<section>
<img src="images/Process_Overview.png" width="1000" height="500">
</section>
<section><h2><u>Packaging</u></h2></section>
<section>
<ul>
<li class="fragment">electron-forge</li>
<li class="fragment">electron-builder</li>
<li class="fragment">electron-packager</li>
</ul>
</section>
</section>
<section>
<section><h2><u>Pros and Cons</u></h2></section>
<section>
<h2><u>Pros</u></h2>
<br>
<ul>
<li class="fragment">Open source</li>
<li class="fragment">Use HTML, CSS and JavaScript</li>
<li class="fragment">Node.js for many libraries</li>
</ul>
</section>
<section>
<h2><u>Cons</u></h2>
<br>
<ul>
<li class="fragment">High resource consumption</li>
<li class="fragment">Slower than native applications</li>
<li class="fragment">No code encryption</li>
</ul>
</section>
</section>
<section>
<h2>Lets start coding!</h2>
</section>
<section>
<h2><u>Sources</u></h2>
<br>
<ul>
<li><a href="https://brainhub.eu/library/what-is-electron-js/">https://brainhub.eu/library/what-is-electron-js/</a></li>
<li><a href="https://www.oreilly.com/library/view/introducing-electron/9781491996041/ch01.html">https://www.oreilly.com/library/view/introducing-electron/9781491996041/ch01.html</a></li>
<li><a href="https://www.electronjs.org/blog/electron">https://www.electronjs.org/blog/electron</a></li>
<li><a href="https://www.electronjs.org/">https://www.electronjs.org/</a></li>
</ul>
</section>
<section>
<h1><u>Thank you for listening!</u></h1>
<br>
<br>
<br>
<h5>Check out <a href="https://revealjs.com/">reveal.js</a> and the <a href="https://github.com/LorenzSeufert/DHBW-SE-e-portfolio">repo</a> for the source code and presentation</h5>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>