Установка React360 npm застряла на графике загрузки загрузки

Мне нужно немного поработать с VR для проекта uni, и для этого я установил React360 cli. Затем я запустил react-360 init Hello360, cd Hello360. Файлы все установились и все в порядке

Проблема в том, что я пытаюсь запустить локальный сервер с помощью npm start. Как только я набираю ввод, я вижу то, что ниже, и ничего больше. он застрял. Может ли кто-нибудь помочь мне изолировать проблему?

> [email protected] start /Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360
> node node_modules/react-360/scripts/packager.js

open browser at http://localhost:8081/index.html


Starting React Native Packager...
┌──────────────────────────────────────────────────────────────────────────────┐
│                                                                              │
│  Running Metro Bundler on port 8081.                                         │
│                                                                              │
│  Keep Metro running while developing on any JS projects. Feel free to        │
│  close this tab and run your own Metro instance if you prefer.               │
│                                                                              │
│  https://github.com/facebook/react-native                                    │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘

Looking for JS files in
   /Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360 


Metro Bundler ready.

Loading dependency graph...(node:8286) UnhandledPromiseRejectionWarning: Error: `fsevents` unavailable (this watcher can only be used on Darwin)
    at new FSEventsWatcher (/Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360/node_modules/sane/src/fsevents_watcher.js:41:11)
    at createWatcher (/Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360/node_modules/jest-haste-map/build/index.js:572:23)
    at Array.map (<anonymous>)
    at HasteMap._watch (/Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360/node_modules/jest-haste-map/build/index.js:683:44)
    at /Users/kishokanthjeganathan/Documents/Final-Code/VR/Hello360/node_modules/jest-haste-map/build/index.js:280:21
    at processTicksAndRejections (internal/process/task_queues.js:97:5)
(node:8286) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:8286) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

person Jegs    schedule 23.07.2020    source источник


Ответы (1)


Нашел решение здесь. Надеюсь это поможет!

https://github.com/expo/expo/issues/854#issuecomment-343243804

person Jegs    schedule 23.07.2020