3

反应原生 0.56

我已经安装了react-native-cli globally,当我尝试使用 创建新项目时react-native init myapp,出现错误。

这是我面临的错误。

截屏

环境:- windows 10,节点版本 v10.1.0,npm 版本 6.1.0,反应原生版本 0.56

以前的项目运行良好,但无法创建新项目。

4

2 回答 2

8

这是 react-native 版本 0.56 上的错误
尝试react-native init [YourProject] --version react-native@0.55.4初始化旧版本

资源

于 2018-07-05T14:34:33.663 回答
1

在 Ubuntu 中安装 watchman 你可以做到,创建 RN APP +< 56 将解决你的问题:

$ cd ~
$ git clone https://github.com/facebook/watchman.git
$ cd watchman/
$ git checkout v4.7.0
$ sudo apt-get install -y autoconf automake build-essential python-dev
$ ./autogen.sh 
$ ./configure 
$ make
$ sudo make install

$ watchman --version
$ echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_watches  && echo 999999 | sudo tee -a  /proc/sys/fs/inotify/max_queued_events && echo 999999 | sudo tee  -a /proc/sys/fs/inotify/max_user_instances && watchman  shutdown-server
于 2018-10-11T20:37:08.043 回答