File size: 253 Bytes
ec9729c
 
5b20bd3
afca346
 
 
316b3ee
afca346
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

echo "将要安装 nodejs 20"
echo ""
# 安装 Node.js 和必要依赖
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/*