Node events.js:167 throw er; // Unhandled 'error' event

前端 未结 19 2230

I\'m trying to use JSON Server in a React App. However, I keep getting the following error.

events.js:167
  throw er; // Unhandled \'error\' event
  ^
Emitt         


        
19条回答
  •  南方客
    南方客 (楼主)
    2020-12-23 20:49

    If you are running on Windows and have IIS running on your machine, ensure the IIS server is stopped if you are trying to run on port 8080. You can also change the port to not bring IIS into it.

    npm start -- --port 8000
    

提交回复
热议问题