Search code examples
reactjsserverlocal

Problem with local server, starting react app


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?


Solution

  • 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