这个丢失的包 (ebay-global-header-node) 的替代品是什么?

What's the alternative to this missing package (ebay-global-header-node)?

描述

我正在尝试启动示例项目

$ npm install -g create-react-native-app sample-app

它抛出了这个错误:

$ npm install -g create-react-native-app sample-app
npm ERR! Error while executing:
npm ERR! /usr/bin/git ls-remote -h -t git://github.scm.corp.ebay.com/cubejs-ebay/ebay-global-header-node.git
npm ERR! 
npm ERR! 
npm ERR! exited with error code: 128

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/gen/.npm/_logs/2018-02-02T13_01_50_144Z-debug.log

比我运行那个孤立的命令:

/usr/bin/git ls-remote -h -t git://github.scm.corp.ebay.com/cubejs-ebay/ebay-global-header-node.git

并抛出此错误:

fatal: unable to connect to github.scm.corp.ebay.com:
github.scm.corp.ebay.com: Name or service not known

我也在远程服务器上做了,确保不是网络问题

环境

尝试运行$ npm install -g create-react-native-app

之后$ create-react-native-app sample-app

可能是因为您试图在一行中执行这两个命令。

我遇到了同样的问题,按照 Mateo 的建议,我尝试了如下命令。

$ npm install -g create-react-app

$ create-react-app sample-app

刚刚删除原生,不确定差异。