首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >模块` not‘不存在于H种姓模块映射中

模块` not‘不存在于H种姓模块映射中
EN

Stack Overflow用户
提问于 2018-04-14 19:03:58
回答 1查看 6.7K关注 0票数 3

我正在尝试创建一个react本机包,并得到以下错误:

代码语言:javascript
复制
Unable to resolve module `expo` from `C:\Users\<User>\Projects\myProject\src\HomeScreen\HomeScreen.js`: Module `expo` does not exist in the Haste module map

This might be related to https://github.com/facebook/react-native/issues/4968
To resolve try the following:
  1. Clear watchman watches: `watchman watch-del-all`.
  2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.
  3. Reset Metro Bundler cache: `rm -rf /tmp/metro-bundler-cache-*` or `npm star
t -- --reset-cache`.  4. Remove haste cache: `rm -rf /tmp/haste-map-react-native
-packager-*`.

我该怎么安装世博模块。尝试执行npm --proxy=http_proxy_server:proxy_port install --save expo,但由于以下错误而失败:

代码语言:javascript
复制
npm ERR! fetch failed https://github.com/expo/react-native-maps/archive/0.20.1-e
xp.0.tar.gz
npm WARN retry will retry, error on last attempt: Error: tunneling socket could
not be established, statusCode=400
npm ERR! fetch failed https://github.com/expo/node-websql/archive/18.0.0.tar.gz
npm WARN retry will retry, error on last attempt: Error: tunneling socket could
not be established, statusCode=400
npm ERR! fetch failed https://github.com/expo/react-native-maps/archive/0.20.1-e
xp.0.tar.gz
npm WARN retry will retry, error on last attempt: Error: tunneling socket could
not be established, statusCode=400
npm ERR! fetch failed https://github.com/expo/node-websql/archive/18.0.0.tar.gz
npm WARN retry will retry, error on last attempt: Error: tunneling socket could
not be established, statusCode=400
npm ERR! fetch failed https://github.com/expo/react-native-maps/archive/0.20.1-e
xp.0.tar.gz
npm ERR! fetch failed https://github.com/expo/node-websql/archive/18.0.0.tar.gz
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\
node_modules\\npm\\bin\\npm-cli.js" "install" "--save" "expo"
npm ERR! node v7.9.0
npm ERR! npm  v4.2.0
npm ERR! code ECONNRESET

有什么建议吗?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-05-01 12:42:22

以上问题是由于代理限制了对github.com的访问。我连接到了一个非代理网络,并从.npmrc中清除了我的代理设置,并在终端上使用了以下说明:

代码语言:javascript
复制
npm config delete proxy -g
npm config delete http-proxy -g
npm config delete https-proxy -g
git config --global --unset core.gitproxy

在对我的机器进行上述更改后,我运行了以下命令,并且它工作了!

代码语言:javascript
复制
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/49835125

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档