鍍金池/ 問(wèn)答/HTML5  網(wǎng)絡(luò)安全  HTML/ react-native init報(bào)錯(cuò) tunneling socket c

react-native init報(bào)錯(cuò) tunneling socket could not be established,

在根據(jù) [http://reactnative.cn/docs/0.50/getting-started.html][1]  
一文中,搭建了相應(yīng)的環(huán)境,但是運(yùn)行 react-native init就報(bào)錯(cuò)誤,錯(cuò)誤信息如下:
This will walk you through creating a new React Native project in F:\WebCode\20171114React-nativeDay84\app50
Using yarn v1.3.2
Installing react-native...
yarn add v1.3.2
info No lockfile found.
[1/4] Resolving packages...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
error An unexpected error occurred: "https://registry.npm.taobao.org/react-native: tunneling socket could not be established, cause=Hostname/IP doesn't match certificate's altnames: \"Host: registry.npm.taobao.org. is not in the cert's altnames: DNS:github.com, DNS:www.github.com\"".
info If you think this is a bug, please open a bug report with the information provided in "F:\\WebCode\\20171114React-nativeDay84\\app50\\yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.

其大意是證書(shū)altnames名字不是github的主機(jī)名,請(qǐng)問(wèn)各位大大,這個(gè)有方法可以解決嗎,網(wǎng)上找了很久,都沒(méi)發(fā)現(xiàn)又出現(xiàn)過(guò)我這種情況的....

回答
編輯回答
苦妄

環(huán)境配置好后,執(zhí)行react-native init AwesomeProject(這個(gè)是項(xiàng)目名稱) ,根據(jù)報(bào)錯(cuò)是你網(wǎng)絡(luò)連接的原因,使項(xiàng)目創(chuàng)建出現(xiàn)異常,可以重新執(zhí)行或者設(shè)置NPM鏡像源
設(shè)置淘寶鏡像

npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
2017年3月14日 14:27
編輯回答
忘了我

問(wèn)題已解決:
npm 淘寶鏡像的問(wèn)題;做了以下步驟
1.刪除yarn 淘寶鏡像
2.刪除全局的react-native-cli ,yarn
3.重新安裝react-native-cli ,yarn
4.刪除npm淘寶鏡像

  npm config set proxy null
  npm config set https-proxy null
info No lockfile found.
[1/4] Resolving packages...
warning react-native > connect@2.30.2: connect 2.x series is deprecated
[2/4] Fetching packages...
info There appears to be trouble with your network connection. Retrying...
info fsevents@1.1.3: The platform "win32" is incompatible with this module.
info "fsevents@1.1.3" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
warning " > react-native@0.50.3" has unmet peer dependency "react@16.0.0".
[4/4] Building fresh packages...
success Saved lockfile.
success Saved 480 new dependencies.

坑:按照react-native官網(wǎng)的方式設(shè)置了yarn npm的淘寶鏡像,然后就出現(xiàn)了這些問(wèn)題;
刪除了淘寶鏡像后,原來(lái)的vue init webpack也不報(bào)錯(cuò)了 原來(lái)報(bào)錯(cuò)的時(shí) tunneling soceck無(wú)法建立;現(xiàn)在可以用了,小開(kāi)心.買(mǎi)了個(gè)代理.npm也可以用了

2018年1月13日 23:48