My Dev Box Setup Script(rlafuente.com)1 ポイント·投稿者 andes314·4 か月前·2 コメントrlafuente.comMy Dev Box Setup Scripthttps://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script2 コメントコメントを投稿[–]tl2do·4 か月前返信I 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 か月前返信Good 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