My Dev Box Setup Script(rlafuente.com)1 points·by andes314·4 mesi fa·2 commentsrlafuente.comMy Dev Box Setup Scripthttps://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script2 commentsPost comment[–]tl2do·4 mesi fareplyI 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·4 mesi fareplyGood 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