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

Skip to content

Commit 94db673

Browse files
committed
Added more video links
1 parent 9eec2b2 commit 94db673

File tree

4 files changed

+57
-5
lines changed

4 files changed

+57
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ developer".
1717

1818
## Watch before your first Node.js session
1919

20-
- Watch Jason's playlist on [Lynda.com]
21-
(https://www.lynda.com/SharedPlaylist/a850f6b7bddf437f8b98679f5f9d9cc3) (45 min)
20+
Watch Jason's playlist on [Lynda.com](https://www.lynda.com/SharedPlaylist/a850f6b7bddf437f8b98679f5f9d9cc3) (45 min)
21+
22+
And you can start with the [Node.js Tutorial for Beginners](https://www.youtube.com/playlist?list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
2223

2324
## Promises' refresher
2425

week1/README.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
10. Building an HTTP server using built-in `http` module
1717
1. HTTP request methods
1818
2. HTTP response status codes
19-
3. Example
19+
3. Routing
20+
4. Example
2021
11. Homework
2122

2223
## What is Node.js?
@@ -28,6 +29,14 @@ From Node.js' [website](https://nodejs.org/en/):
2829
> and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of
2930
> open source libraries in the world.
3031
32+
Videos:
33+
34+
[Introduction to Node.js](https://www.youtube.com/watch?v=w-7RQ46RgxU&index=1&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
35+
36+
[The V8 Engine](https://www.youtube.com/watch?v=86tgU7UaJmU&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=3).
37+
38+
Reading:
39+
3140
[What is Node.js? What can you do with it? Why should you use it?](https://medium.com/@paynoattn/what-is-nodejs-what-can-you-do-with-it-why-should-you-use-it-8c8d6df32d6d#.qvbp8g4dq)
3241
_estimated time: 10 minutes_
3342

@@ -49,6 +58,14 @@ _estimated time: 4-6 hours_
4958

5059
## Setting up a Node.js project using `npm init` and `package.json`
5160

61+
Videos:
62+
63+
[Node Package Manager](https://www.youtube.com/watch?v=kQ1j0rEI7EI&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=20)
64+
65+
[The package.json File](https://www.youtube.com/watch?v=_eRwjuIDJ2Y&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=21)
66+
67+
Documentation:
68+
5269
[`npm init`](https://docs.npmjs.com/cli/init)
5370

5471
[`package.json`](https://docs.npmjs.com/files/package.json)
@@ -59,10 +76,28 @@ _estimated time: 4-6 hours_
5976

6077
## Importing modules using `require`
6178

79+
Videos:
80+
81+
[Modules and `require()`](https://www.youtube.com/watch?v=xHLd36QoS4k&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=6)
82+
83+
[Module Patterns](https://www.youtube.com/watch?v=9UaZtgB5tQI&index=7&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
84+
85+
Documentation:
86+
6287
[Node.js modules](https://nodejs.org/docs/latest-v8.x/api/modules.html)
6388

6489
## Building an HTTP server using built-in `http` module
6590

91+
Videos:
92+
93+
[Clients & Servers](https://www.youtube.com/watch?v=qSAze9b0wrY&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=11)
94+
95+
[Creating a Server](https://www.youtube.com/watch?v=lm86czWdrk0&index=12&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
96+
97+
[Basic Routing](https://www.youtube.com/watch?v=_zvWeGwVkCY&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=19)
98+
99+
Documentation:
100+
66101
[`http` module documentation](https://nodejs.org/docs/latest-v8.x/api/http.html)
67102

68103
[HTTP request methods](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods)

week2/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ state and manipulate it (add, subtract, reset).
2323

2424
### Node.js file system module `fs`
2525

26+
Videos:
27+
28+
[Reading & Writing Files](https://www.youtube.com/watch?v=U57kU311-nE&index=9&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
29+
30+
Documentation:
31+
2632
[Main documentation](https://nodejs.org/docs/latest-v8.x/api/fs.html)
2733

2834
[fs.readFile()](https://nodejs.org/docs/latest-v8.x/api/fs.html#fs_fs_readfile_path_options_callback)

week3/README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
5. Express.js vs native `http` library
1010
1. HTTP request method refresher
1111
2. HTTP response status code refresher
12-
3. Example
13-
4. Routing
12+
3. Routing
13+
4. Example
1414
6. Building a REST API for To-dos
1515
7. Homework
1616

@@ -20,6 +20,16 @@
2020

2121
## Express.js vs native `http` library
2222

23+
Videos:
24+
25+
[Introduction to Express](https://www.youtube.com/watch?v=9TSBKO59u0Y&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp&index=23)
26+
27+
[Express Route Params](https://www.youtube.com/watch?v=MuMs1pLuT7I&index=24&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
28+
29+
[Middleware & Static Files](https://www.youtube.com/watch?v=-lRgL9kj_h0&index=28&list=PL4cUxeGkcC9gcy9lrvMJ75z9maRw4byYp)
30+
31+
Documentation:
32+
2333
[Express.js Hello World](https://expressjs.com/en/starter/hello-world.html)
2434

2535
[Express.js routing](https://expressjs.com/en/guide/routing.html)

0 commit comments

Comments
 (0)