Files
swbz.blog/content/misc/First-blog.md
Sleepwithoutbz 98103d3163 Init commit.
2025-12-07 20:49:50 +08:00

542 B

+++ date = '2025-12-07T20:27:31+08:00' draft = false title = 'First Blog' +++

NodeJS 安装

  1. 安装 nodejs
# 连接NodeSource仓库
$ curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
apt list nodejs
  1. npm install时连接超时
# 设置为淘宝镜像
npm config set registry http://registry.npmmirror.com
# 或者是调整代理
rm -rf  ~/.npmrc # 删除配置文件
npm cache clean --force # 清理缓存
npm config rm proxy # 清理代理
npm config rm https-proxy
reboot # 关机重启