This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
412 lines (348 loc) · 14.4 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<!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>TypeScript-Schulung</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Introduction -->
<section>
<a href="https://www.typescriptlang.org/">
<img src="media/ts-logo-256.png" alt="TypeScript logo"
style="height: 180px; margin: 0 auto 4rem auto; background: transparent;" class="demo-logo">
</a>
<h2>TypeScript-Schulung</h2>
<p>
<small>Erstellt von <a href="https://github.com/lkreimann">Lea Reimann</a></small>
</p>
</section>
<section>
<h2>TypeScript</h2>
<ul>
<li>TypeScript baut auf JavaScript auf (<em>superset</em>)
<ul>
<li>auf der Website steht es so: <a href="https://www.typescriptlang.org/"><em>"TypeScript is JavaScript with syntax for types"</em></a></li>
</ul>
</li>
<li>TypeScript gibt es seit Oktober 2012</li>
<li>TypeScript wurde von Microsoft entwickelt und wird dort auch weiterentwickelt</li>
<li>Hilfreich ist TypeScript vor allem während der Entwicklung, um Fehler zu reduzieren</li>
</ul>
<aside class="notes">
Fun fact: Visual Studio Code (Editor) nutzt TypeScript "under the hood", um die Arbeit mit JavaScript zu vereinfachen
</aside>
</section>
<!-- Data types -->
<section>
<section>
<h2>Datentypen</h2>
<ul>
<li><code>string</code></li>
<li><code>number</code> (sowohl Integer als auch Floats)</li>
<li><code>boolean</code> für Wahrheitswerte</li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date">
<code>Date</code>
</a></li>
<li><code>array</code> (Beispiel: <code>string[]</code>)</li>
<li><code>object</code></li>
</ul>
<p>
<small>Diese Datentypen existieren in JavaScript, meist jedoch nur implizit (<em>language primitives</em>), z. B. mit <code>.toString()</code> oder <code>parseInt()</code>.</small>
<small>Mit TypeScript können wir diese explizit bzw. zum Typisieren nutzen.</small>
</p>
<aside class="notes">
<ul>
<li><code>array</code> kann mit anderen Typen in Kombination genutzt werden (siehe Beispiele)</li>
<li><code>null</code> und <code>undefined</code> können auch als Typen genutzt werden, sollte aber nicht getan werden, wenn es vermeidbar ist</li>
<li>Primitive types in JavaScript: boolean, bigint, null, number, string, symbol, and undefined</li>
</ul>
</aside>
</section>
<section>
<h3>Neue Datentypen mit TypeScript</h3>
<ul>
<li><a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any"><code>any</code></a></li>
<li><code>unknown</code></li>
<li>never</li>
<li>void</li>
</ul>
<aside class="notes">
<ul>
<li><code>any</code> hebelt jegliches Type-Checking aus, eigentlich wie in JavaScript</li>
<li><code>unknown</code> - hier muss eine Typprüfung vor der Nutzung erfolgen, mehr dazu später</li>
</ul>
</aside>
</section>
<section>
<h3>Wieso überhaupt typisieren?</h3>
<ul>
<li>Vermeidung von Laufzeitfehlern</li>
<li>Genau wissen, welche Datentypen wo möglich sind</li>
<li>Feste Struktur und Angaben, auch für spätere Weiterentwicklung</li>
</ul>
</section>
<section>
<h3>Beispiele: Explizites Typisieren</h3>
<pre data-id="code-animation"><code class="typescript">
let username: string;
let age: number;
let birthdate: Date;
let isTrainee: boolean;
let pets: string[];
let thisCanBeAnything: any;
</code></pre>
<p><a href="https://www.typescriptlang.org/play?ssl=10&ssc=27&pln=8&pc=1#code/DYUwLgBArgziBOA7AhgWxALgjM8CWiA5gNwBQokyhmEiUqARgmRRA3vGABYAmyYNACL8QLcBDwwAKvGQEQNBgHsloZIjGQADuBhYc+IgG0AupojdJAYXUAhEAEFEAT0tEs652VKWYNxPZOrlwEhBAAvBAA5AAMUWS+-oEubmGRMQkhfnaOKSFEERAAZsjAcMRAA">TypeScript Playground</a></p>
</section>
<section>
<h3>Beispiele: Implizites Typsieren</h3>
<pre data-id="code-animation">
<code class="typescript">
let username = 'Lea';
let number = 42;
let isBoolean = true;
</code>
</pre>
<p>Das funktioniert aber natürlich nur, wenn ein Wert zum Initialisieren bereits bekannt ist.</p>
<p><a href="https://www.typescriptlang.org/play?#code/DYUwLgBArgziBOA7AhgWxBAvBA5AGRGRwG4AoUSRKVAIwSwgBYAmMiiASxgCEB7X0MkQMw8KCDJA">TypeScript Playground</a></p>
</section>
<section>
<h3>Type-Checking</h3>
<p>Wenn du den Typ <code>unknown</code> verwendest, kommst du um das Type-Checking nicht herum</p>
<pre data-id="code-animation"><code class="typescript" data-trim>
function makeIDtoString(id: unknown): string {
if (typeof id === 'number') {
return id.toString();
} else if (typeof id === 'string') {
return id;
} else {
return 'ID is malformed';
}
}
</code></pre>
<p><small><a href="https://www.typescriptlang.org/play?#code/GYVwdgxgLglg9mABAWwIYGsCmBJAIlOAZSgCcYwBzAChgBMAuRcdMOAdzAEpGBnU8iogDeAKESIYwRFSgBPAA6Y4UuogC8GxAHIwIZACNMJLZ2FjxiEpiggSSOgDoCxMpSqcA3OYC+iTABseTAkpGQUlFVp1TS0+VwoTMwtLa1t7Wi9xXwCgpIsrGzttPAkeFFR-YDgSZExaLUzEbxFmkQgEHjh-TAd-OGo0LDxnfjcAZk5PNo6unr6BjBx8IlHqLQAWACYTTmmwTu7e-qpBpZH4qnBaTGByOsmvIA">Im TypeScript Playground öffnen</a></small></p>
<aside class="notes">
In diesem Beispiel ist vielleicht aber auch eher ein Union Type sinnvoll
</aside>
</section>
<!-- Types -->
<section>
<h3>Eigene Type Aliases erstellen</h3>
<p>Eigene <code>Type Aliases</code> sind hilfreich, wenn man weiß, welche Werte der Typ annehmen kann oder welche für die Anwendung relevant sind.</p>
<pre data-id="code-animation"><code class="typescript" data-trim>
type Seasons = 'Spring' | 'Summer' | 'Autumn' | 'Winter';
type FibonacciNumbers = 1 | 2 | 3 | 5 | 8 | 13 | 21; // ...
</code></pre>
<p><small>Es gibt noch andere Wege, wie Type Aliases genutzt werden können:
<a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#type-aliases">siehe Handbuch</a></small></p>
</section>
<!-- Union Types -->
<section>
<h3>Union Types</h3>
<p>Es kommt vor, dass Variablen verschiedene Datentypen annehmen können, dann sind <em>Union Types</em> hilfreich</p>
<pre data-id="code-animation">
<code class="typescript">
const id: string | number;
</code>
</pre>
</section>
</section>
<!-- Interfaces -->
<section>
<section>
<h2>Interfaces</h2>
<p>Interfaces sind Beschreibungen von Objekten. Sie geben Aufschluss über die Struktur und Inhalte eines Objekts und können
als Bauplan genutzt werden.</p>
<p>Sie sind dann besonders hilfreich, wenn komplexe Daten verarbeitet werden müssen oder Daten zusammengestellt werden.</p>
<p>Optionale Felder in einem Interface können mit einem <code>?</code> markiert werden.</p>
</section>
<section>
<h3>Beispiel</h3>
<pre data-id="code-animation">
<code class="typescript">
interface Developer {
age: number,
name: string,
favouriteMeals: string[],
isTrainee: boolean,
colleagues?: Developer[]
}
</code>
</pre>
</section>
<section>
<h3>Beispiel: Machen wir ein Objekt daraus</h3>
<pre data-id="code-animation">
<code class="typescript" data-trim>
const Lea: Developer = {
age: 27,
name: "Lea",
favouriteMeals: ['Pizza', 'Salat', 'Kartoffelbrei' ],
isTrainee: false,
colleagues: [
{ name: 'Cat', ... },
{ name: 'Manfred', ... },
...
]
}
</code>
</pre>
<p><small><a href="https://www.typescriptlang.org/play?#code/JYOwLgpgTgZghgYwgAgCIQG4QDYHsAO0yA3gFDLJwDmEAXMiAK4C2ARtADTkNzN3IBnMFFBUuFeBlyMRkALIQ42AfSEiQVANoBdccmACAKlDigI-VrlzZFIPQms3qjCAID89dFjyEoO0gC+pKQOIELIADKKnpg4BEQAvCTc1PwATADseiC8-ABEUXB5epLSshAKSirImgDkAArAAF5NcLUcyLUAykpwYO2dANJwUGC4MDA4rFAQwLXIutwGxqYg5vTwyhD2jopULtWa3BTEPHz0tQDCfQMAdPfIAXonZ-y1cnAgMDMAJncPT2OyHut242kCQA">TypeScript Playground</a></small></p>
</section>
<section>
<h3>json2ts</h3>
<p>Wenn man mit großen Datenmengen von außen (andere Teams, öffentliche APIs) arbeitet, kann es hilfreich sein, Interfaces generieren zu lassen.
Das geht zum Beispiel mit <a href="http://json2ts.com/">json2ts</a>.</p>
</section>
</section>
<!-- Functions -->
<section>
<section>
<h2>Funktionen</h2>
<p>Funktionen gibt es bereits in JavaScript, mit TypeScript können diese typsicherer gemacht werden.</p>
<pre data-id="code-animation">
<code class="javascript" data-trim>
// JavaScript
function sayName(name) {
console.log('Your name is ' + name);
}
</code>
</pre>
<pre data-id="code-animation">
<code class="typescript" data-trim>
// TypeScript
function sayName(name: string) {
console.log('Your name is ' + name);
}
</code>
</pre>
</section>
<section>
<h3>Funktionen mit Union-Types</h3>
<pre data-id="code-animation">
<code class="typescript" data-trim>
function printId(id: number | string) {
if (typeof id === "string") {
// In this branch, id is of type 'string'
console.log(id.toUpperCase());
} else {
// Here, id is of type 'number'
console.log(id);
}
}
</code>
</pre>
<p><small><a href="https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types">Quelle</a></small></p>
</section>
<section>
<h3>Rückgabe typisieren</h3>
<p>Rückgabewerte können natürlich auch typisiert werden</p>
<pre data-id="code-animation">
<code class="typescript" data-trim>
function add(a: number, b: number): number {
return a + b;
}
function showAdditionResult(a: number, b: number): void {
console.log(a + b)
}
</code>
</pre>
</section>
</section>
<!-- Classes-->
<section>
<h2>Klassen</h2>
<p>Klassen gibt es auch in JavaScript, TypeScript macht diese typsicherer.</p>
<p>
<a
href="https://www.typescriptlang.org/play#code/JYOwLgpgTgZghgYwgAgKoGdrIN4ChnIhwC2EAXMumFKAOYDc+ywAJhSAK7EBG0jAvrlwIANnHTo0mKAEEECAPYdwOJkVIUqNEAyat2XXlEZNFILRwRgFUABTrylanQA0zNoUPQAlKoIEwAAtgdAA6B2QAXkISCEZ-ZCCQ0NYo93jkQUFhBXMwZA5pCgwsaJAIAHcpaDlFZTBbACIAWQ4oAAdAgE9GtwBGb3ogA">Beispiel</a>
(<a href="https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html">Quelle</a>)
</p>
</section>
<!-- Frameworks -->
<section>
<h2>Frameworks</h2>
<p>In folgenden Frameworks wird mit TypeScript gearbeitet oder es ist möglich</p>
<ul>
<li>Angular</li>
<li>Nest.js</li>
<li>React</li>
<li>Express</li>
<li>...</li>
</ul>
<p><small>Diese Liste erhebt keinen Anspruch auf Vollständigkeit</small></p>
<aside class="notes">
</aside>
</section>
<!-- Usage -->
<section>
<h2>It transpiles</h2>
<pre data-id="code-animation">
<code class="bash">
npm install -g typescript
</code>
</pre>
<p>
<a href="https://www.typescriptlang.org/docs/handbook/typescript-tooling-in-5-minutes.html">Hier</a>
findest du die Anleitung zur Benutzung von TypeScript (Installation, Kompilieren etc.)
</p>
</section>
<section>
<h2>Ausprobieren</h2>
<p><a href="https://www.typescriptlang.org/play">TypeScript Playground</a></p>
</section>
<section>
<h2>Weiterlernen</h2>
<ul>
<li><a href="https://www.typescriptlang.org/docs/handbook/intro.html">TypeScript Handbook</a></li>
<li><a href="https://www.freecodecamp.org/news/what-is-typescript-for-beginners/">freeCodeCamp: What is TypeScript? A Beginner's Guide</a></li>
<li><a href="https://www.youtube.com/watch?v=ahCwqrYpIuM">YouTube: TypeScript - The Basics</a></li>
<li>
<a href="https://www.freecodecamp.org/news/the-top-stack-overflowed-typescript-questions-explained/#1-what-is-the-difference-between-interfaces-vs-types-in-typescript">
freeCodeCamp: Top StackOverflow'ed TypeScript Questions Explained
</a>
</li>
<li><a href="https://basarat.gitbook.io/typescript/">TypeScript Deep Dive</a></li>
</ul>
</section>
<section>
<h2>Quellen</h2>
<ul>
<li><a href="https://www.typescriptlang.org/">Website von TypeScript</a></li>
<li><a href="https://devblogs.microsoft.com/typescript/announcing-typescript-1-0/">Announcing TypeScript 1.0</a></li>
<li><a href="https://www.typescriptlang.org/docs/handbook/">TypeScript Handbook</a></li>
<li><a href="https://de.wikipedia.org/wiki/Typisierung_(Informatik)">Wikipedia: Typisierung (Informatik)</a></li>
</ul>
</section>
<section>
<h2>Vielen Dank für eure Aufmerksamkeit!</h2>
<p>
<small>Presentation made with <a href="https://revealjs.com">reveal.js</a></small>
</p>
<p><small>Für eine Übersicht aller Folien, einfach auf ESC drücken</small></p>
<p><small><a href="https://github.com/lkreimann/typescript-schulung">Source Code</a> der Präsentation</small></p>
</section>
</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>