This commit is contained in:
2025-09-24 11:59:02 +02:00
parent b4d20a6063
commit c289c17200
2 changed files with 153 additions and 0 deletions

19
On host/Node.js.md Normal file
View File

@@ -0,0 +1,19 @@
### Download Node.js®
'''
# Download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"
# Download and install Node.js:
nvm install 22
# Verify the Node.js version:
node -v # Should print "v22.19.0".
nvm current # Should print "v22.19.0".
# Verify npm version:
npm -v # Should print "10.9.3".
'''