我正在使用 node.js Nodemailer 模块并遇到以下错误;
我查看了我的 package.json 并意识到它是 "nodemailer": "^1.8.0",
版本。
当我运行 npm update
时,如何降级到 v0.7.1 并防止以后自动升级?
最佳答案
如果您正好需要 v0.7.1,请使用 "nodemailer": "0.7.1"
,删除 nodemailer
下的 node_modules
并再次运行 npm install
。
另一种方法是运行以下命令:
npm remove nodemailer
npm install [email protected] --save
关于javascript - 如何将此 node.js 模块降级到特定版本并防止以后自动升级?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33591036/