react在配置代理时,VM85:5 crbug/1173575, non-JS module files deprecated.
时间: 2023-11-13 18:54:24 浏览: 134
这个警告是因为在使用 webpack-dev-server 时,使用了非 JavaScript 模块文件,可以通过在 webpack 配置文件中添加以下代码来解决:
```javascript
module.exports = {
// ...
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto'
}
]
}
};
```
相关问题
error An unexpected error occurred: "https://registry.yarnpkg.com/react-native/-/react-native-0.72.1.tgz: read ECONNRESET"
这个错误提示表明在下载 React Native 的时候出现连接重置的问题可能是由于网络不稳定或被防火墙或代服务器阻止导致的。
你可以尝试方法来解决这个问题:
1. 检你的网络连接,确保你可以正常问互联网。尝使用浏览器访 `https://registry.yarn.com/react-native/-/react-native-0.721.tgz` 确认可以下载该文件。
. 如果你使用代理,请确保你已配置代理,并且代理服务器可以常连接到 `https://registry.yarnpkg.com`3. 清除你的 yarn 缓存,可以通过运行以下命令来完成:`yarn cache clean`。
4. 尝试切换到 npm 来安装 React Native,运行命令:`npm install react-native@0..1`。
5. 如果你在公司或学校的网络环境下,尝试使用其他网络或连接热点进行安装。
如果问题仍然存在,可能是由于网络问题或其他外部因素引起的。请确保你的网络连接稳定,并尝试在不同的时间或网络环境下进行安装。如果问题仍然持续存在,建议咨询网络管理员或寻求更高级的技术支持。
(node:11432) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency (Use `node --trace-warnings ...` to show where the warning was created) × Downloading template error Command failed with exit code 1: yarn add react-native@latest warning react-native > @react-native-community/cli > @react-native-community/cli-plugin-metro > metro > metro-minify-uglify > uglify-es@3.3.9: support for ECMAScript is superseded by `uglify-js` as of v3.13.0 error An unexpected error occurred: "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.72.11.tgz: read ECONNRESET".
这个错误可能是因为在安装React Native时出现了问题。其中一个可能的原因是网络连接问题导致无法下载所需的依赖项。你可以尝试以下方法来解决这个问题:
1. 检查你的网络连接,确保你可以正常访问互联网。
2. 清除你的yarn缓存,可以通过运行以下命令来完成:`yarn cache clean`。
3. 重新运行安装命令,使用`--verbose`参数来获取更详细的错误信息,例如:`yarn add react-native@latest --verbose`。
4. 如果你使用的是代理服务器,请确保配置正确并且可以正常连接。
5. 尝试使用npm来安装React Native,运行命令:`npm install react-native@latest`。
如果以上方法都没有解决问题,你可能需要进一步调查错误信息以确定根本原因。
阅读全文