编译app.js时toast.exe中的致命错误

时间:2017-05-30 13:56:51

标签: node.js github gruntjs

我以前从未见过这个:

[nodemon] restarting due to changes...
Fatal error: spawn C:\Users\DonTron\Documents\GitHub\dev-thaihome\api\node_modules\grunt-notify\bin\toaster\toast.exe ENOENT
Completed in 2.163s at Tue May 30 2017 20:52:12 GMT+0700 (SE Asia Standard Time) - Waiting...
[nodemon] starting `node app.js`

任何人都知道它是什么以及我该如何处理它?

1 个答案:

答案 0 :(得分:1)

出现此错误的原因是我忘记安装grunt-notify

这就是诀窍

npm uninstall grunt-notify 
npm install grunt-notify

1