ec9729c
5b20bd3
afca346
316b3ee
afca346
| | #!/bin/bash
echo "将要安装 nodejs 20"
echo ""
apt-get update
apt-get install -y curl vim
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y nodejs
apt-get clean
rm -rf /var/lib/apt/lists/* |