React native cannot find any package

I'm pretty new to reacting to native and javascript in general, so please excuse me if what I ask is complete garbage. Thanks

In a folder outside of my own embedded application, I placed a project that I cloned from github to include in my project.

I started the link to npm in this project, and npm linked it to my project, however when I try to start the project I get this screen

edit own error

I have no idea why this is happening, and I already tried everything I could find on the Internet. Please save me!

The github repository for the project is here

+5
source share
1 answer

The entire file should be located under the root directory of the package. The packer does not work well if the files are outside.

The workaround is described here below .

node_modules/react-native/packager/packager.sh --projectRoots <ROOT-1>,<ROOT2>,<ROOT-3> 
0
source

All Articles