设置npm的淘宝镜像
时间: 2023-11-08 20:02:58 浏览: 93
要设置npm的淘宝镜像,可以执行以下命令:
```
npm config set registry https://registry.npm.taobao.org/
```
这将把npm的registry配置为淘宝镜像。如果你希望还原为官方镜像,可以执行以下命令:
```
npm config set registry https://registry.npmjs.org/
```
相关问题
设置npm淘宝镜像
要设置npm淘宝镜像,可以使用以下命令:
```
npm config set registry https://registry.npm.taobao.org/
```
这会将npm的registry设置为淘宝镜像。如果需要恢复默认的npm registry,可以使用以下命令:
```
npm config set registry https://registry.npmjs.org/
```
设置npm淘宝镜像后显示npm should be run outside of the node repl, in your normal shell.
这个错误信息是因为在 Node.js REPL(交互式解释器)中运行了 npm 命令,而不是在命令行终端中运行。
要解决这个问题,你可以退出 Node.js REPL,返回到命令行终端中,在终端中运行 npm 命令。也可以使用以下方法在 REPL 中运行 npm 命令:
```
const { exec } = require('child_process');
exec('npm command', (err, stdout, stderr) => {
console.log(stdout);
});
```
其中,将 `npm command` 替换成需要在 REPL 中运行的 npm 命令即可。
阅读全文