node.js error message events.js:183 throw er; // Unhandled 'error' event

后端 未结 13 1143
囚心锁ツ
囚心锁ツ 2020-12-18 04:25

Playing around Microsoft\'s botframework, when I try to run the app.js file, which is the main file of the bot, the first time is fine, after I close the bot emulator, and a

13条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-18 04:36

    I solved the issue using this command in my terminal on Linux.

    rm -rf node_modules
    rm package-lock.json yarn.lock
    npm cache clear --force
    npm install
    

提交回复
热议问题