-
Notifications
You must be signed in to change notification settings - Fork 56
/
s06-02-JavaScript_frameworks.html
123 lines (71 loc) · 2.08 KB
/
s06-02-JavaScript_frameworks.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
<!doctype html>
<html lang="en">
<meta charset="utf-8" />
<title>websoft</title>
<!-- Mithril HTML Slideshow styles -->
<link href="css/mithril-slideshow.css" rel="stylesheet" />
<!-- Code formatting using highlight.js -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/tomorrow.css">
<script src="js/highlight.pack.js"></script>
<!-- Text formatting using Markdown through showdown.js -->
<script src="js/showdown.min.js"></script>
<script data-role="slide" data-markdown type="text/html">
# Software Development for the Web
## JavaScript frameworks
### Mikael Roos
</script>
<script data-role="slide" data-markdown type="text/html">
# Agenda
* JavaScript Frameworks
</script>
<script data-role="slide" data-markdown type="text/html">
# Type of technologies
* Server side
* Single Page Application (SPA)
* REST API
</script>
<script data-role="slide" data-markdown type="text/html">
# Server side
* Static (ordinary) website
* Dynamic pages (routes/database)
* Sessions and authentication
* Server rendered templates
</script>
<script data-role="slide" data-markdown type="text/html">
# Client side
* Single Page Application (SPA)
* Fetch (ajax)
* Dynamic pages (api)
* Server/client rendered templates
</script>
<script data-role="slide" data-markdown type="text/html">
# REST API
* Authentication
* JSON/XML
* Supplier for client side technologies
</script>
<script data-role="slide" data-markdown type="text/html">
# Divide the market
* JavaScript flavors
* Backend framework
* Template languages
* Frontend framework
* Data layer
* Testing
* Mobile and Desktop
* Libraries
</script>
<script data-role="slide" data-markdown type="text/html">
# The state of JS
* Lets go through [the state of JS](https://2019.stateofjs.com/).
</script>
<script data-role="slide" data-markdown type="text/html">
# Last words
* Questions on that?
</script>
<script data-role="slide" data-markdown type="text/html">
</script>
<!-- include essential js-script -->
<script src="js/mithril.min.js"></script>
<script src="js/mithril-slideshow.js"></script>