-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEWP-08-git-npm.html
686 lines (521 loc) · 16.6 KB
/
EWP-08-git-npm.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>EWP: git and npm</title>
<meta name="description" content="Einführung in die Webprogrammierung SoSe 2016. Sitzung 08: git and npm">
<meta name="author" content="Oliver Pohl">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/ibi.css" id="theme">
<link rel="stylesheet" href="plugin/font-awesome/css/font-awesome.min.css">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/ibi.js"></script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h2>Einführung in die Webprogrammierung</h2>
<h4>Sitzung 08: git & npm</h4>
<h4>Oliver Pohl: <a href="mailto:opohl@bbaw.de">opohl@bbaw.de</a></h4>
</section>
<section>
<section>
<h2>Agenda</h2>
<ul>
<li>Warmup</li>
<li>git</li>
<li>npm</li>
<li>Bonus: Browserify</li>
</ul>
</section>
</section>
<section data-markdown="">
<script>
## Warmup
* Vokabelkarten
* Lückentext
</script>
</section>
<section>
<section data-markdown="">
<script>
## Git
Versionskontrolle
</script>
</section>
<section data-markdown="">
<script>
## Namensgebung
* Entwickelt von Linus Torvalds
* Entwickler von Linux
* Git = Idiot
* Eigenbenennung
</script>
</section>
<section data-markdown="">
<script>
## Nutzen
* Versionsverwaltung von Dateien
* Programmieren im Team
* Branching & Merging
</script>
</section>
<section data-markdown="">
<script>
## Repositories
* Zentrales Verzeichnis des VCS
* Möglichkeiten
* Lokal: Terminal, GitLab
* Server: Terminal, GitLab
* Service: **Github**, BitBucket
</script>
</section>
<section data-markdown="" class="small-table">
<script>
## Einfacher Workflow
| **Befehl** | **Nutzen** | **Von** | **Nach** |
|:-----------------|
| ```git init``` | Zentrales Repository initialisieren | Remote Origin | |
| ```git clone``` | Repository duplizieren | Remote Origin | Working Dir |
||
| ```git add``` | Änderungen hinzufügen/vermerken | Working Dir | Staging |
| ```git commit``` | Änderungen lokal abspeichern | Staging | Lokales .git |
| ```git push``` | Änderungen hochladen | Lokales .git | Remote Origin |
Tutorial: https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow
</script>
</section>
<section data-markdown="">
<script>
## Repository initialisieren
*Nicht nachmachen*
```
$ mkdir myProject
$ cd myProject
$ git init --bare
```
</script>
</section>
<section data-markdown="">
<script>
## Repository auf GitHub anlegen
[Github](https://github.com/)
* Online-Service um git-Repositories zu hosten
* Quellcode im Browser ansehen und durchsuchen
* Repositories erstellen: Anmeldung notwendig
* Klonen: Anonym
</script>
</section>
<section data-markdown="">
<script>
### Repository Klonen: git clone
* Das Repository wird 1:1 kopiert (geklont)
Generell
```
$ git clone [Git-Repo-URL]
```
Hier
```
$ git clone https://github.com/suchmaske/EWP-Git-Example.git
```
</script>
</section>
<section data-markdown="">
<script>
## Arbeit beginnen
* Neue Dateien erstellen
* Dateien bearbeiten
* Änderungen machen
* usw.
</script>
</section>
<section data-markdown="">
<script>
## Daten stagen: git add
* Änderungen im Projekt vermerken
* Änderungen werden noch nicht zwischengespeichert
```
$ git add index.html
```
```
$ git add .
```
</script>
</section>
<section data-markdown="">
<script>
## Dateien ignorieren: .gitignore
* Nicht alle Dateien sollen nachverfolgt werden
* Beispiel: ```node_modules``` (JS- und CSS-Abhängigkeiten)
* Im Projektverzeichnis die Datei ```.gitignore``` anlegen
* Dateien und Verzeichnisse auflisten, die ignoriert werden sollen
Inhalt von .gitignore
```
ignoreMe.txt
node_modules/*
```
</script>
</section>
<section data-markdown="">
<script>
## Änderungen speichern: git commit
* Änderungen werden in einer lokalen DB gespeichert (in .git)
* Zwischen-Status des Projekts, der später wieder abgerufen werden kann
* Commit-Nachricht zwingend notwendig
* Commit-Nachricht sollte Änderungen zusammenfassen
```
$ git commit -m "My commit message"
```
</script>
</section>
<section data-markdown="">
<script>
## Änderungen hochladen: git push
* Änderungen ins zentrale Repository hochladen
* Commits vorher notwendig
```
$ git push origin master
```
</script>
</section>
<section data-markdown="">
<script>
## Änderungen herunterladen: git pull
* Mehrere Klone an verschiedenen Orten
* Aktuelle Änderungen holen und lokale Kopie updaten
```
$ git pull
```
</script>
</section>
<section data-markdown="">
<script>
## Übung: Git
* Auf Github anmelden
* https://github.com/suchmaske/EWP-Git-Example
* Repository forken (Button oben rechts)
* Repository klonen
* Änderungen in ```index.html``` implementieren
* Änderungen hochspielen
</script>
</section>
<section data-markdown="">
<script>
## Branching: git branch & git checkout
* Abzweigung vom aktuellen Code erstellen
* Gut für Team-Arbeiten
* Einzelne Probleme in eigener Branch bearbeiten
Alle Branches auflisten
```
$ git branch
```
Neue Branch erstellen
```
$ git branch [branch-name]
```
Zur Branch wechseln
```
$ git checkout [branch-name]
```
</script>
</section>
<section data-markdown="">
<script>
### Historie anzeigen: git log
* Alle Commits ausgeben lassen
```
$ git log
```
</script>
</section>
<section data-markdown="">
<script>
## Cheatsheet
Übersicht über die gängigsten Git-Befehle
https://services.github.com/kit/downloads/github-git-cheat-sheet.pdf
</script>
</section>
<section>
<h1>KAHOOT</h1>
<h3><a href="http://www.kahoot.it">www.kahoot.it</a></h3>
</section>
</section>
<section>
<section data-markdown="">
<script>
## npm
</script>
</section>
<section data-markdown="">
<script>
## Node.js
https://nodejs.org
* Leichtgewichtige Serversoftware
* Laufzeitumgebung für JS-Projekte
* Schnell Web-Projekte erstellen
* **Paketverwaltung** für JS- und CSS-Bibliotheken: ```npm```
</script>
</section>
<section data-markdown="">
<script>
## npm
https://www.npmjs.com/
* npm: Node Package Manager
* Abhängigkeiten verwalten
* **JS- und CSS-Bibliotheken installieren**
* Neue node-Module erstellen
</script>
</section>
<section data-markdown="">
<script>
## npm: Paket installieren
* Installierte Pakete werden im Verzeichnis ```node_modules``` gespeichert
Generische Syntax
```
$ npm install [module_name]
```
jQuery installieren
```
$ npm install jquery
```
</script>
</section>
<section data-markdown="">
<script>
## npm: Abhängigkeiten verwalten
* Abhängigkeit: Bibliothek, die vom eigenen Code nachgenutzt wird
* Beispiele: jQuery, Tooltipster, DataTables
* Verwaltung in einer JSON-Datei: ```package.json```
</script>
</section>
<section data-markdown="">
<script>
## npm: Anwendung
Inhalt von package.json ohne Abhängigkeiten
```
{}
```
jQuery installieren und Abhängigkeit merken
```
$ npm install jquery --save
```
Inhalt von package.json mit Abhängkeiten
```
{
"dependencies": {
"jquery": "^3.0.0"
}
}
```
</script>
</section>
<section data-markdown="">
<script>
## Wdh. - Dateien ignorieren: .gitignore
* Nicht alle Dateien sollen nachverfolgt werden
* Beispiel: ```node_modules``` (JS- und CSS-Abhängigkeiten)
* Im Projektverzeichnis die Datei ```.gitignore``` anlegen
* Dateien und Verzeichnisse auflisten, die ignoriert werden sollen
Inhalt von .gitignore
```
ignoreMe.txt
node_modules/*
```
</script>
</section>
<section data-markdown="">
<script>
## npm: Abhängigkeiten installieren
* Verwaltung der Abhängigkeiten im Git-Repo ist unnötig
* Abhängigkeiten können einfach nachinstalliert werden
* ```npm``` greift auf ```package.json``` zu
jQuery wird anhand von package.json installiert
```
$ git clone https://github.com/suchmaske/EWP-Git-Example.git
$ cd EWP-Git-Example
$ npm install
```
Installation von Abhängigkeiten
```
$ npm install
```
</script>
</section>
<section data-markdown="">
<script>
## AMOR - Node nicht vorhanden
* node und npm sind nicht auf AMOR installiert
</script>
</section>
<section>
<h2>npm: Module nutzen</h2>
<ul>
<li>Relative Dateipfade zur Datei herstellen</li>
<li>Dateipfade genau untersuchen!</li>
</ul>
<pre><code><script src="js/jquery.min.js"></script></code>Statt JS-Verzeichnis</pre>
<pre><code><script src="node_modules/jquery/dist/jquery.min.js"></script></code>Libraries aus node_modules holen</pre>
</section>
<section data-markdown="">
<script>
## Übung: npm
* Git-Repo klonen: https://github.com/suchmaske/EWP-npm-Example.git
* Mit npm installieren
* jquery
* datatables
* In index.html: jquery und datatables einbinden
* Tipp: Siehe <head>
</script>
</section>
<section>
<h1>KAHOOT</h1>
<h3><a href="http://www.kahoot.it">www.kahoot.it</a></h3>
</section>
</section>
<section>
<section data-markdown="">
<script>
## Bonus: browserify
* JS-Abhängigkeiten direkt im eigenen JS-Code deklarieren
* Mit ```browserify``` Abhängigkeiten und Code zusammenkompilieren
* Für Bonus-Hausaufgabe
</script>
</section>
<section data-markdown="">
<script>
## browserify installieren
Browserify installieren (global)
```
$ npm install -g browserify
```
Auf Linux installieren
```
$ sudo npm install -g browserify
```
</script>
</section>
<section>
<h2>browserify Beispiel</h2>
<pre>
<code><!-- Content -->
<script src="js/bundle.js"></script></code>Inhalt eines HTML-Bodys</pre>
<pre><code>var $ = require("jquery");
global.jQuery = $;
var dt = require( 'datatables.net' )( window, $ );
$("table").DataTable();</code>Inhalt einer JS-Datei, die Abhängigkeiten aufruft</pre>
</section>
<section data-markdown="">
<script>
## browserify ausführen
Generelle browserify-syntax
```
$ browserify [input-file] -o [output-file]
```
bundle.js aus app.js via browserify erstellen
```
$ browserify app.js -o bundle.js
```
</script>
</section>
</section>
<section>
<section data-markdown="">
<script>
## Hausaufgabe 15
* git-Repository forken & bearbeiten
* Übersicht über git-Befehle erstellen
* DataTables, Tooltipster
* github-Icon mit Link implementieren
* Projekt auf AMOR laden
</script>
</section>
<section data-markdown="">
<script>
## Hausaufgabe 16
* git-Repository erstellen
* Libraries via npm installieren
* Code aus Lieblingsfilm-HA nachnutzen
* Libraries aus npm nutzen
</script>
</section>
<section data-markdown="">
<script>
## Bonus Hausaufgabe 2: browserify
* Pflicht für alle, die die Codecademy HA letztes Jahr gemacht haben
* Optional für andere, um eine andere Aufgabe auszugleichen
* Code aus HA 16 nachnutzen
* JS-Abhängigkeiten-Problem über browserify lösen
</script>
</section>
</section>
</div>
<div class="footer">
<a href="https://creativecommons.org/licenses/by/4.0/">
<img src="img/cc-by.png" alt="CC-BY" id="cc-logo">
</a>
Oliver Pohl, Einführung in die Webprogrammierung (SoSe 2016), Sitzung 07: jQuery Libraries. -- <a href="http://telotadev.bbaw.de/ewp-helper/questions">Anonyme Fragen: http://goo.gl/dDkMeL</a>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/chart/Chart.min.js' },
{ src: 'plugin/chart/csv2chart.js' },
{ src: 'plugin/externalcode/externalcode.js'},
],
chart: {
defaults: {
global: {
title: { fontColor: "#000" },
},
legend: {
labels: { fontColor: "#000" },
},
scale: {
scaleLabel: { fontColor: "#000" },
gridLines: { color: "#000", zeroLineColor: "#000" },
ticks: { fontColor: "#000" },
}
},
line: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ], "borderDash": [ [5,10], [0,0] ]},
bar: { backgroundColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ]},
pie: { backgroundColor: [ ["rgba(0,0,0,.8)" , "rgba(220,20,20,.8)", "rgba(20,220,20,.8)", "rgba(220,220,20,.8)", "rgba(20,20,220,.8)", "rgba(252,158,206, 0.8)"] ]},
radar: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ]},
},
});
</script>
</body>
</html>