-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
339 lines (275 loc) · 9.46 KB
/
index.html
File metadata and controls
339 lines (275 loc) · 9.46 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Node.js Functions</title>
<meta name="description" content="Node.js Functions">
<meta name="author" content="Luis Ibanez">
<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">
<link rel="stylesheet" href="revealjs/css/reveal.min.css">
<link rel="stylesheet" href="revealjs/css/theme/sky.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="revealjs/lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="revealjs/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Node.js</h1>
<h2>Functions</h2>
<p>
<small>Created by <a href="https://opensource.com/users/luis-ibanez">Luis Ibanez</a></small>
</p>
</section>
<section>
<span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/InteractiveResource" property="dct:title" rel="dct:type">Node.js Functions</span>
<br>
by
<span xmlns:cc="http://creativecommons.org/ns#" property="cc:attributionName">Luis Ibanez</span>
<br>
is licensed under a
<br>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">
<img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by/3.0/88x31.png" />
</a>
<br>
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US">Creative Commons by Attribution 4.0 License</a>
<br>
<a rel="license" href="http://www.apache.org/licenses/LICENSE-2.0">
<img alt="Apache 2.0 License" style="border-width:0" src="http://www.apache.org/images/feather-small.gif" />
</a>
<br>
<a rel="license" href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>
</section>
<section>
<a href="#" class="image">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Node.js_logo.svg/500px-Node.js_logo.svg.png" alt="Node.js logo">
</a>
</section>
<section>
<h2>Javascript</h2>
<h3>Server-Side</h3>
</section>
<section>
<h2>Node.js</h2>
<h3>Functions</h3>
</section>
<section>
<h3>Let's write</h3>
<h3>our first</h3>
<h3>Function</h3>
</section>
<section>
<p>Launch Vim from the command line prompt</p>
<p>to create a new file</p>
<pre><code data-trim contenteditable>
vim helloworld.js
</code></pre>
</section>
<section>
<p>Type in the file the following</p>
<pre><code data-trim contenteditable>
var sayhello = function() {
console.log("Hello World");
}
sayhello();
</code></pre>
<p>Save the file and quit the editor</p>
</section>
<section>
<p>Run the code with nodejs</p>
<pre><code data-trim contenteditable>
nodejs helloworld.js
</code></pre>
</section>
<section>
<p>You should see</p>
<pre><code data-trim contenteditable>
"Hello World"
</code></pre>
</section>
<section>
<h3>Let's write</h3>
<h3>our second</h3>
<h3>Function</h3>
</section>
<section>
<p>Launch Vim from the command line prompt</p>
<p>to create a new file</p>
<pre><code data-trim contenteditable>
vim visitcountries.js
</code></pre>
</section>
<section>
<p>Type in the file the following</p>
<pre><code data-trim contenteditable>
var visitcountries = function() {
var world = {};
world.asia = {};
world.africa = {};
world.america = {};
world.asia.japan = {};
world.asia.japan.tokyo = {};
world.asia.japan.kyoto = {};
console.log("Visited %j",world);
}
visitcountries();
</code></pre>
</section>
<section>
<p>Run the code with nodejs</p>
<pre><code data-trim contenteditable>
nodejs visitcountries.js
</code></pre>
</section>
<section>
<p>You should see</p>
<pre><code data-trim contenteditable>
Visited {"asia":{"japan":{"tokyo":{},"kyoto":{}}},"africa":{},"america":{}}
</code></pre>
</section>
<section>
<h3>Let's improve</h3>
<h3>the formatting</h3>
</section>
<section>
<p>Edit the file</p>
<pre><code data-trim contenteditable>
vim visitcountries.js
</code></pre>
</section>
<section>
<p>Replace the line:</p>
<pre><code data-trim contenteditable>
console.log("Visited %j",world);
</code></pre>
<p>With the line:</p>
<pre><code data-trim contenteditable>
console.log( JSON.stringify(world,null,2) );
</code></pre>
</section>
<section>
<p>Run the code again</p>
<pre><code data-trim contenteditable>
nodejs visitcountries.js
</code></pre>
</section>
<section>
<h3>Let's get data</h3>
<h3>from the Web</h3>
</section>
<section>
<p>Create a new file</p>
<pre><code data-trim contenteditable>
vim weatherdata.js
</code></pre>
</section>
<section>
<p>Type in the file the following</p>
<pre><code data-trim contenteditable>
var http = require('http');
var options = {
host: 'api.openweathermap.org',
path: '/data/2.5/weather?q=Albany,US'
};
callback = function(response) {
response.on('data', function (inputdata) {
var jsonstr = JSON.parse(inputdata);
console.log(JSON.stringify(jsonstr,null,2));
});
}
http.request(options, callback).end();
</code></pre>
</section>
<section>
<p>Save the file</p>
<p>and quit the editor</p>
</section>
<section>
<p>Run the new code</p>
<pre><code data-trim contenteditable>
nodejs weatherdata.js
</code></pre>
</section>
<section>
<p>Analyze</p>
<p>the output</p>
</section>
<section>
<h3>Let's get data</h3>
<h3>for any city</h3>
</section>
<section>
<p>Edit the file</p>
<pre><code data-trim contenteditable>
vim weatherdata.js
</code></pre>
</section>
<section>
<p>Edit the first lines to become:</p>
<pre><code data-trim contenteditable>
var http = require('http');
var city = process.argv[2];
var country = process.argv[3];
var options = {
host: 'api.openweathermap.org',
path: '/data/2.5/weather?q=' + city + ',' + country
};
</code></pre>
</section>
<section>
<p>Run the code again</p>
<p>but this time add the arguments</p>
<pre><code data-trim contenteditable>
nodejs weatherdata.js Albany US
</code></pre>
</section>
<section>
<h3>Let's get</h3>
<h3>more data!</h3>
</section>
<section>
<h3>Find out</h3>
<h3>the weather</h3>
<h3>from three cities</h3>
</section>
<section>
<h3>Breath!</h3>
</section>
<section>
<h3>Smile!</h3>
</section>
</div>
</div>
<script src="revealjs/lib/js/head.min.js"></script>
<script src="revealjs/js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'revealjs/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'revealjs/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'revealjs/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'revealjs/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'revealjs/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'revealjs/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>