Skip to content

Commit cc9ca24

Browse files
committed
2 parents 9625219 + 9de614a commit cc9ca24

File tree

1 file changed

+25
-17
lines changed

1 file changed

+25
-17
lines changed

README.md

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,35 +19,47 @@ This repository holds various materials, demos and instructions for my Node.JS c
1919
## Preparation
2020
As we meet in the classroom we wish to spend our precious time on interesting development challenges rather than machine setup. Make sure to prepare your machine aforehand. Should you encounter any issue - please open an issue within this repo and I'll be sure to assist shortly
2121

22-
### ✔ 1 Install Node.JS v8.9.x
23-
Install Node.JS LTS (any 8.9.X version) [from this website](https://nodejs.org/en/) - just download and progress within the installation wizard
22+
### ✔ 1 Install Node.JS LTS
23+
Install Node.JS LTS (any 12.0.X version) [from this website](https://nodejs.org/en/) - just download and progress within the installation wizard
24+
2425

2526
### ✔ 2 Ensure Node is installed correctly
26-
Open your favourite terminal (Windows: command prompt) and type 'NPM verson'. The output should confirm that version 8.9.x is indeed installed
27+
Open your favourite terminal (Windows: command prompt) and type 'NPM verson'. The output should confirm that version (e.g. 12.0) is indeed installed
2728

2829
### ✔ 3 Install IDE (editor)
2930
I highly recommend using VSCode editor in the course as it's lightweight and has a very rich plugins eco-sysem that we might use during our excercise. Simply visit the [downloads site](https://code.visualstudio.com/download) and choose the edition that suits your operations system. You may opt for any other editor that supports Node debugging and intellisense
3031

31-
### ✔ 4 Install The following NPM packages
32-
Most of our excercises rely on few popular backbone packages that we can install aforehand. Open your terminal (Windows: command prompt) and paste the following command:
33-
```
34-
npm install -g express mocha nyc nodemon faker eslint eslint-plugin-node passport jsonschema jsonwebtoken knex socket.io
35-
```
36-
### ✔ 5 Install POSTMAN
32+
33+
### ✔ 4 Install POSTMAN
3734
Some of our excercises require to perform web requests, POSTMAN is a popular client tool for running HTTP requests. [Download page](https://www.getpostman.com/apps)
3835

39-
### 6 Polish Your JS Skills
36+
### 5 Polish Your JS Skills
4037
Learning Node requires to be familiar with Javascript. Beside mastering the basic principals of JS, it's recommended to get acquaintance with the following concepts that are highly related to Node.JS:
4138
<br/>
42-
[Arrow functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions)
39+
[10 min JavaScript crash course](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics)
4340
<br/>
44-
[Spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)
41+
[Objects](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Working_with_Objects)
42+
<br/>
43+
[Promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)
44+
<br/>
45+
[Async/await](https://javascript.info/async-await)
46+
<br/>
47+
[Arrow functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions)
4548
<br/>
4649
[Callbacks](https://developer.mozilla.org/en-US/docs/Glossary/Callback_function)
4750
<br/>
4851
[Classes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes)
52+
<br/>
53+
[Destructuring](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
54+
<br/>
55+
[Spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)
56+
<br/>
57+
[The basics of TypeScript](https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html)
58+
<br/>
59+
[Express web framework - hello world](https://codeburst.io/getting-started-with-expressjs-3cbb279bd5e6)
60+
4961

50-
### 7 Ensure Familiarity with Backend Concepts
62+
### 6 Ensure Familiarity with Backend Concepts
5163
It's assumed that all students are familiar with basic web & backend concepts. For example:
5264
<br/>
5365
Rest API
@@ -59,10 +71,6 @@ HTTP headers
5971
JSON
6072

6173

62-
63-
64-
65-
6674
## Code Examples
6775
All the code examples that we run in the classroom [can be found in this Git repository](https://github.com/i0natan/nodebestpractices/tree/course)
6876

0 commit comments

Comments
 (0)