0

I am new to react native and i try creating a project with "react-native init AwesomeProject" but got this errorenter image description here

and I try checking the folder AwesomeProject, android and ios folder are missing, am working on windows 10

Oluwafemi
  • 11
  • 1
  • 2

1 Answers1

0

This error is a new bug in react-native 0.56 that affects Windows users. To solve it you can create a project with another react-native version:

react-native init --version="0.55.4" MyNewApp

You can see more infos in this GitHub issue.

And.. Remember to run "npm install" before starting your project.

Paolo Dell'Aguzzo
  • 1,431
  • 11
  • 14