Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
development:javascript [2020/03/19 13:01] kalenpw removed |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== JavaScript ====== | ||
| - | |||
| - | * [[ . javascript : mutating data | Mutating Data ]] | ||
| - | * [[ .javascript : react | React ]] | ||
| - | |||
| - | ---- | ||
| - | ===== Install nodejs ===== | ||
| - | <code bash> | ||
| - | # via package manager, will install outdated version | ||
| - | sudo apt install node-js | ||
| - | # install n globally | ||
| - | sudo npm install n -g | ||
| - | # update to stable node version | ||
| - | sudo n stable | ||
| - | </ | ||
| - | |||