|
5 | 5 | - Notes: The JavaScript Programming Language |
6 | 6 |
|
7 | 7 | ## Language Details |
8 | | -- [language specification](https://ecma-international.org/publications-and-standards/standards/ecma-262/) |
| 8 | +- [Language Specification](https://ecma-international.org/publications-and-standards/standards/ecma-262/) |
9 | 9 | - [EMCA-262](https://github.com/tc39/ecma262) |
10 | | -- interpreter: |
11 | | - - runtimes: |
12 | | - - Firefox: SpiderMonkey |
13 | | - - Chrome: V8 |
14 | | - - Microsoft: Chakra |
15 | | - - Apple: JavaScriptCore: https://trac.webkit.org/wiki/JavaScriptCore |
16 | | - - AKA: |
17 | | - - SquirrelFish and SquirrelFish Extreme |
18 | | - - Safari Context: Nitro and Nitro Extreme |
19 | | - - [node.js](src/runtimes/node) |
20 | | -- [language reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference) |
21 | | -- [base modules index]() |
22 | | -- [standard library reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide) |
23 | | -- package management: |
24 | | - - [packaging]() |
25 | | - - tools: |
| 10 | +- [Interpreter](languages/javascript/1_implementations/1_implementations.txt) |
| 11 | +- [Type System]() |
| 12 | +- [Memory Model]() |
| 13 | +- [Language Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference) |
| 14 | +- [Standard Library](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide) |
| 15 | +- Packaging and Distribution |
| 16 | + - [Core Module Index]() |
| 17 | + - [Package Index](https://www.npmjs.com) |
| 18 | + - Tools: |
26 | 19 | - npm: first version: 2010 |
27 | 20 | - pnpm: industry standard |
28 | 21 | - https://pnpm.io |
29 | 22 | - LiveServer plugin for VSCode hot code reload |
30 | | - - structuring projects: |
31 | | -- [package index](https://www.npmjs.com) |
32 | | -- [extending and embedding]() |
33 | | -- [developer contribution guide]() |
34 | | -- memory model: |
35 | | -- history: |
| 23 | + - Structuring Projects: |
| 24 | + - ... |
| 25 | +- [Extending and Embedding]() |
| 26 | +- [Developer Contribution Guide] |
| 27 | +- [History] |
36 | 28 | - ECMAScript v1: 1997 |
37 | 29 | - 2015+: annual release |
38 | 30 | - [The Weird History of JavaScript](https://www.youtube.com/watch?v=Sh6lK57Cuk4) |
39 | 31 |
|
40 | | -## Testing |
41 | | - |
42 | | - |
43 | 32 | ## Use Cases |
44 | 33 | - [Applications for JavaScript]() |
45 | 34 |
|
| 35 | +## Community |
| 36 | + |
46 | 37 | ## Learning Resources |
47 | 38 | - [JavaScript](https://roadmap.sh/javascript) |
48 | 39 | - [TypeScript](https://roadmap.sh/typescript) |
49 | 40 | - https://developer.mozilla.org/en-US/docs/Web/JavaScript |
50 | 41 | - practice problems |
51 | 42 |
|
52 | | - |
53 | 43 | ## Spell Check |
54 | 44 | ```shell |
55 | 45 | pnpm run lint |
56 | 46 | ``` |
57 | 47 |
|
| 48 | +## References |
| 49 | + |
58 | 50 | ## Legend |
59 | 51 | **Q**: Question for later research |
60 | 52 |
|
|
0 commit comments