Reputation: 25
When I am trying to 'npm start' react app https://github.com/0wczar/airframe-react and then go to local server at http://0.0.0.0:4100/ I got ERR_ADDRESS_INVALID. What should I do to repair my local server?
Upvotes: 0
Views: 1023
Reputation: 1601
You are entered the wrong server URL. It should be localhost or 127.0.0.1, I think.
http://localhost:4100
or
http://127.0.0.1:4100
Upvotes: 2