Skip to content

修改国内源

npm

sh
# 查看源
npm get registry

# 临时修改
npm  install axios --registry https://registry.npmmirror.com

# 持久使用
npm config set registry https://registry.npmmirror.com

# 还原
npm config set registry https://registry.npmjs.org

个人收集整理, MIT License