Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3899a88

Browse files
committed
added lynda playlists
1 parent 16ebeb9 commit 3899a88

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

week1/MAKEME.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Create an http server that can add and subtract from a number, which we will cal
77

88
Rule 1: DO NOT USE EXPRESS.JS
99
Rule 2: you can use other packages, but you HAVE to also make a version WITHOUT any NPM packages (http, of course, is not NPM but a node native package)
10-
```
10+
```js
1111
// The state
1212
var state = 10;
1313
```
1414

1515
Endpoints criteria
16-
```
16+
```js
1717
// /state
1818
// response: the current state in a html format
1919
// when the server starts, this should return "10"
@@ -58,3 +58,5 @@ Read: http://openmymind.net/2012/2/3/Node-Require-and-Exports/
5858
refresh on command line
5959
Video Mac/linux:
6060
Video PC: -- ()
61+
62+
While not strictly homework, we’ve created another playlist if you’d like to learn more or review (and as JavaScript developers, you should). https://www.lynda.com/SharedPlaylist/78e6513f51bb4102b03349460491b4e3

week1/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ Although most of this was already covered by the JavaScript class, let's refresh
1717

1818
### Control flow and events
1919
An important term when making applications is _control flow_. You already know all about it. Read through this page and answer this question: how do we control "flow" in JavaScript?
20-
> Read: [Examples of control flow in JavaScript](https://github.com/ummahusla/Codecademy-Exercise-Answers/tree/master/Language%20Skills/JavaScript/Unit%2005%20Control%20Flow/01%20More%20on%20Control%20Flow%20in%20JS)
20+
> Read: [Examples of control flow in JavaScript](https://github.com/ummahusla/Codecademy-Exercise-Answers/tree/master/Language%20Skills/JavaScript/Unit%2005%20Control%20Flow/01%20More%20on%20Control%20Flow%20in%20JS)
21+
22+
### Check out these video's to prep for the second lecture:
23+
https://www.lynda.com/SharedPlaylist/a034fd969ef945bb9ebbd9490cc75d5a

week2/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You may hear us talking about this "ES6" all the time. ES6 basically means: the
2323
> During the NodeJS course, we will teach you some ES6 features, like Fat Arrow. It's *extremely* important to know whether a function comes from ES6 or from an older version of JavaScript. Why? [Because browsers don't support every new feature just yet](http://kangax.github.io/compat-table/es6/). With Node, on the other hand, you can always control which version of Javascript is running, because it's running on your computer, not in the browser. Node Version 6.x that you are running supports most ES6.
2424
So in summary: if you're working on the frontend, you probably don't want to use es6 just yet. In backend, type node --version to see which version you are running, and make sure everyone on the team has the same version by adding "engine" to `package.json` like so:
2525

26-
```
26+
```js
2727
"dependencies": {
2828
...
2929
},
@@ -56,3 +56,5 @@ Read parts:
5656
- 3.1, 3.2
5757
- 4.1, 4.3
5858
[Airpair tutorial](https://www.airpair.com/javascript/node-js-tutorial#3-node-fundamentals)
59+
60+
## As you finish that up, don’t forget to watch next week’s video playlist to prepare for Express. You’ll find it here: https://www.lynda.com/SharedPlaylist/e8a2fec772bb462da38429629a34f3b7

week3/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
9. Express vs native http library
1515
6. Building a REST web API for Todos
1616

17-
17+
## Check out the React repo here ->
18+
And find out how you can prepare for the first React lecture

0 commit comments

Comments
 (0)