1
我是NodeJS和NPM的新手。「npm start」顯示「未處理的承諾拒絕」錯誤
當我一個項目的NodeJS中運行npm start
,出現如下錯誤:
Starting the development server...
(node:9417) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Exited with code 3
這個錯誤是什麼意思? 如何調試這個問題?
$ grep start package.json
"start": "react-scripts start",
$ npm -v
3.10.10
$ node -v
v6.10.1
$ npm ls react-scripts
[email protected] /home/li/sample
└── [email protected]
有沒有辦法知道這個錯誤來自?代碼中有很多'reject()'。我不確定哪一個導致錯誤。 – Xin