Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:javascript:nodejs [2020/10/19 19:19]
kalenpw created
development:javascript:nodejs [2023/06/21 21:56] (current)
kalenpw
Line 1: Line 1:
 ====== NodeJS ====== ====== NodeJS ======
 +
 +----
 +===== Installation =====
 +<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 lts
 +</code>
 +----