My Dev Box Setup Script(rlafuente.com)1 points·by andes314·vor 4 Monaten·2 commentsrlafuente.comMy Dev Box Setup Scripthttps://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script2 commentsPost comment[–]tl2do·vor 4 MonatenreplyI always add Node.js even for non-JS dev work (many tools need it):bash echo "==> Installing Node.js (LTS)" curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs[–]andes314·vor 4 MonatenreplyGood call, worth adding!
bash echo "==> Installing Node.js (LTS)" curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs