forked from nodeschool/nodeschool.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
250 lines (237 loc) · 10 KB
/
index.html
File metadata and controls
250 lines (237 loc) · 10 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="/images/favicon.ico">
<link rel="icon" type="image/png" href="/images/nodeschool-icon.png">
<title>nodeschool.io</title>
</head>
<body>
<div id="header">
<h1 class="title">
Node School
</h1>
<p class="tagline">
Upcoming Events
</p>
<div class="content" id="irl">
<p>Here are upcoming in-person free (or almost free) NodeSchool events around the world:</p>
<ul>
<li><a href="https://ti.to/nodebp/nodeschool201403" target="_blank">March 8th in Budapest, Hungary</a></li>
<li><a href="http://jsfest.com/" target="_blank">March 11-12th in San Francisco, USA</a></li>
<li><a href="http://www.meetup.com/Norfolk-Developers-NorDev/events/158375062/" target="_blank">March 11th in Norwich, UK</a></li>
<li><a href="https://ti.to/nodeschool/london-march-2014/" target="_blank">March 12th in London, UK</a></li>
<li><a href="http://www.meetup.com/sfdevs/events/168186132/" target="_blank">March 25th in Sioux Falls, SD</a></li>
<li><a href="https://ti.to/nodeschool-brighton/27-march-2014" target="_blank">March 27th in Brighton, UK</a></li>
</ul>
<p>Anyone can host an event. <a href="host.html">Read this page to learn how!</a></p>
</div>
<p class="tagline">
Learn Node.JS with interactive lessons
</p>
<p class="description">Install these choose-your-own-adventure style lessons and learn how to use <a href="http://nodejs.org/">node.js</a>, <a href="https://npmjs.org/">npm</a> and other related tools by writing code to solve realistic problems. The lessons run in your terminal and work on Windows, Mac and Linux. Select a lesson below to get started!</p>
</div>
<div class="boxes">
<h2 class="section">Core Concepts</h2>
<div class="box orange" data-url="learn-you-node">
<h2 class="title">
Learn You The Node.js For Much Win!
</h2>
<div class="screenshot">
<img src="images/learnyounode.png" alt="">
</div>
<p class="desc">
Learn the basics of node: asynchronous i/o, http
</p>
<div class="expanded">
<a href="https://github.com/rvagg/learnyounode"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g learnyounode</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>learnyounode</code> command. Just run:
<pre>learnyounode</pre>
to play!
</div>
</div>
<div class="box red" data-url="stream-adventure">
<h2 class="title">
Stream Adventure
</h2>
<div class="screenshot">
<img src="images/stream-adventure.png" alt="">
</div>
<p class="desc">
Learn how to compose streaming interfaces
with <code>.pipe()</code>
</p>
<div class="expanded">
<a href="https://github.com/substack/stream-adventure"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g stream-adventure</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>stream-adventure</code> command. Just run:
<pre>stream-adventure</pre>
to play!
</div>
</div>
<div class="box cyan" data-url="bytewiser">
<h2 class="title">
Bytewiser
</h2>
<div class="screenshot">
<img src="images/bytewiser.png" alt="">
</div>
<p class="desc">
Learn how to manipulate binary data in node.js and HTML5 browsers
</p>
<div class="expanded">
<a href="https://github.com/maxogden/bytewiser"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g bytewiser@latest</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>bytewiser</code> command. Just run:
<pre>bytewiser</pre>
to play!
</div>
</div>
<div class="box red" data-url="functionaljs">
<h2 class="title">
Functional Javascript
</h2>
<div class="screenshot">
<img src="images/functional-js.png" alt="">
</div>
<p class="desc">
Learn fundamental functional programming features of JavaScript in vanilla ES5.
</p>
<div class="expanded">
<a href="https://github.com/timoxley/functional-javascript-workshop"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g functional-javascript-workshop@latest</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>functional-javascript-workshop</code> command. Just run:
<pre>functional-javascript-workshop</pre>
to play!
</div>
</div>
<div class="box orange" data-url="git-it">
<h2 class="title">
Git-it
</h2>
<div class="screenshot">
<img src="images/git-it.png" alt="">
</div>
<p class="desc">
Learn Git and GitHub basics.
</p>
<div class="expanded">
<a href="https://github.com/jlord/git-it"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g git-it@latest</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>git-it</code> command. Just run:
<pre>git-it</pre>
to play!
</div>
</div>
</div>
<div class="boxes">
<h2 class="section">Electives</h2>
<div class="box cyan" data-url="levelmeup">
<h2 class="title">
Level Me Up Scotty!
</h2>
<div class="screenshot">
<img src="images/levelmeup.png" alt="">
</div>
<p class="desc">
Learn to use leveldb, a simple key/value store with a vibrant package
ecosystem.
</p>
<div class="expanded">
<a href="https://github.com/rvagg/levelmeup"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g levelmeup</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>levelmeup</code> command. Just run:
<pre>levelmeup</pre>
to play!
</div>
</div>
<div class="box orange" data-url="expressworks">
<h2 class="title">
ExpressWorks
</h2>
<div class="screenshot">
<img src="images/expressworks.png" alt="">
</div>
<p class="desc expressworks">
Learn the basics of the Express.js framework.
</p>
<div class="expanded">
<a href="https://github.com/azat-co/expressworks"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g expressworks@latest</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>expressworks</code> command. Just run:
<pre>expressworks</pre>
to play!
</div>
</div>
<div class="box red" data-url="promiseitwonthurt">
<h2 class="title">
Promise It Won't Hurt
</h2>
<div class="screenshot">
<img src="images/promiseitwonthurt.png" alt="">
</div>
<p class="desc promiseitwonthurt">
Learn to use promises in javascript to handle async operations
</p>
<div class="expanded">
<a href="https://github.com/stevekane/promise-it-wont-hurt"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g promise-it-wont-hurt@latest</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>promise-it-wont-hurt</code> command. Just run:
<pre>promise-it-wont-hurt</pre>
to play!
</div>
</div>
<div class="box orange" data-url="asyncyou">
<h2 class="title">
async You
</h2>
<div class="screenshot">
<img src="images/asyncyou.png" alt="">
</div>
<p class="desc asyncyou">
Learn to use the async package
</p>
<div class="expanded">
<a href="https://github.com/bulkan/async-you"
class="view-source">view-source</a>
Once you have <a href="http://nodejs.org">node</a> installed, open cmd.exe or Terminal.app and run:
<pre>npm install -g async-you</pre>
(Mac/Linux users: if that doesn't work try it again with 'sudo' in front).
Now you have a <code>async_you</code> command. Just run:
<pre>async_you</pre>
to play!
</div>
</div>
</div>
<a target="_blank" href="https://github.com/nodeschool/discussions/issues" class="note">Stuck? Ask a question here</a>
<a target="_blank" href="https://github.com/rvagg/workshopper" class="note">Make a new lesson</a>
<a href="host.html" class="note">Run a nodeschool event</a>
<script src="main.js"></script>
</body>
</html>