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

Skip to content

Commit 9ed4fb0

Browse files
committed
Added some documentation links for week 1
1 parent ca53528 commit 9ed4fb0

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed

week0/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
- Watch Jason's playlist on [Lynda.com]
66
(https://www.lynda.com/SharedPlaylist/a850f6b7bddf437f8b98679f5f9d9cc3) (45 min)
77

8+
## Promises' refresher
9+
10+
Jim's [summary of promises](https://github.com/remarcmij/JavaScript/blob/master/fundamentals/promises.md)
11+
from JavaScript module.
12+
813
## Handing in homework
914

1015
Take a look at [this video](https://www.youtube.com/watch?v=-o0yomUVVpU&index=2&list=PLVYDhqbgYpYUGxRdtQdYVE5Q8h3bt6SIA)

week1/README.md

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
5. Finding documentation
1010
6. Setting up a Node.js project using `npm init` and `package.json`
1111
7. Installing dependencies using `npm install`
12+
1. Local and global mode
1213
8. Importing modules using `require`
1314
1. Built-in, external modules and local files
1415
9. Building an HTTP server using built-in `http` module
15-
1. HTTP methods
16-
2. HTTP status codes
16+
1. HTTP request methods
17+
2. HTTP response status codes
1718
10. Homework
1819

1920
## What is Node.js?
@@ -30,13 +31,39 @@ _estimated time: 10 minutes_
3031

3132
## Getting started with Node.js and npm
3233

33-
Tutorials: [NPM tutorials. Follow chapters 1 - 10](https://docs.npmjs.com/getting-started/installing-node)
34+
[A Beginner’s Guide to npm — the Node Package Manager](https://www.sitepoint.com/beginners-guide-node-package-manager/)
35+
[NPM tutorials. Follow chapters 1 - 10](https://docs.npmjs.com/getting-started/installing-node)
3436
_estimated time: 4-6 hours_
3537

36-
## Promises' refresher
38+
## Finding documentation
3739

38-
Jim's [summary of promises](https://github.com/remarcmij/JavaScript/blob/master/fundamentals/promises.md)
39-
from JavaScript module.
40+
[Mozilla Developer Network](https://developer.mozilla.org/en-US/docs/Web)
41+
42+
[Node.js Documentation](https://nodejs.org/docs/latest-v8.x/api/documentation.html)
43+
44+
## Setting up a Node.js project using `npm init` and `package.json`
45+
46+
[`npm init`](https://docs.npmjs.com/cli/init)
47+
48+
[`package.json`](https://docs.npmjs.com/files/package.json)
49+
50+
## Installing dependencies using `npm install`
51+
52+
[`npm install`](https://docs.npmjs.com/cli/install)
53+
54+
## Importing modules using `require`
55+
56+
[Node.js Modules](https://nodejs.org/docs/latest-v8.x/api/modules.html)
57+
58+
## Building an HTTP server using built-in `http` module
59+
60+
[HTTP request methods](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods)
61+
62+
[HTTP response status codes](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)
63+
64+
## Homework
65+
66+
Check [README.md](homework/README.md) in `homework` subdirectory.
4067

4168
## Control flow and events
4269

0 commit comments

Comments
 (0)