You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Source code of **Learning JavaScript Data Structures and Algorithms** book.
8
+
9
+
Work in Progress.
10
+
11
+
## List of available chapters:
12
+
13
+
* 01: [JavaScript, ECMAScript and TypeScript: a quick overview](https://github.com/loiane/javascript-datastructures-algorithms/tree/third-edition/html/chapter01)
## Installing and running the book examples With Node
18
+
19
+
* Install [Node](https://nodejs.org)
20
+
* Open terminal/cmd and change directoty to this project folder: `cd /Users/.../javascript-datastructures-algorithms` (Linux/Max) or `cd C:/.../javascript-datastructures-algorithms`
21
+
* run `npm install` to install all depencies
22
+
* To see the examples, run `http-server html` or `npm run serve`. Open your browser `http:\\localhost:8080` to see the book examples
23
+
* Or `cd html/chapter01` and run each javascript file with node: `node 02-Variables`
24
+
25
+
## Running the book examples in the browser
26
+
27
+
* Right click on the html file you would like to see the examples, right click and 'Open with Chrome (or any other browser)'
28
+
29
+
## List of all available examples:
30
+
31
+
* 01: JavaScript, ECMAScript and TypeScript: a quick overview
0 commit comments