Node.js tips and tricks

From HPCWIKI
Revision as of 16:03, 21 May 2024 by Admin (talk | contribs) (Created page with " == Install latest Node.js<ref>https://deb.nodesource.com/</ref> == <syntaxhighlight lang="bash"> #Install Node.js 20.x LTS $curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash - $sudo apt-get install -y nodejs </syntaxhighlight> == References == <references />")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Install latest Node.js[1]

#Install Node.js 20.x LTS
$curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash - 
$sudo apt-get install -y nodejs

References