-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.npmrc 是否需要删除呢,大家来说一下 #4633
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
新建了一个默认配置并使用 TypeScript 的项目,没有发现 .npmrc。 另外 cnpmjs 是 npm 的国内源,有些人没有良好的网络,经常出现 node-sass 之类的依赖安装不上, cnpmjs 可以解决网络问题导致的安装失败。 以下是我的文件结构: .
├── config
│ ├── dev.js
│ ├── index.js
│ └── prod.js
├── global.d.ts
├── package-lock.json
├── package.json
├── project.config.json
├── src
│ ├── app.scss
│ ├── app.tsx
│ ├── index.html
│ └── pages
│ └── index
│ ├── index.scss
│ └── index.tsx
└── tsconfig.json |
Hello~ 您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。 如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。 Good luck and happy coding~ |
CC @luckyadam |
发现是 .npmrc 里
按照 cnpmjs.org 的文档,disturl 应该设置为国内镜像 https://npm.taobao.org/mirrors/node |
是的增加的 |
问题描述
初始化项目之后, 使用
npm i
,一直会报错,gyp ERR! stack Error: 404 response downloading https://r.cnpmjs.org/node/v10.16.3/node-v10.16.3-headers.tar.gz
期望行为
项目初始化模板红移除
.npmrc
系统信息
Taro CLI 1.3.20 environment info:
System:
OS: Windows 10
Binaries:
Node: 10.16.3 - ~\scoop\apps\nvm\current\nodejs\nodejs\node.EXE
Yarn: 1.19.1 - ~\scoop\apps\nvm\current\nodejs\nodejs\yarn.CMD
npm: 6.9.0 - ~\scoop\apps\nvm\current\nodejs\nodejs\npm.CMD
注释掉.npmrc后使用npm i 或则 yarn正常安装依赖,
The text was updated successfully, but these errors were encountered: