Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在所有软件包完全更新之前必须运行npm update多次是否正常?我运行了一次,当我启动节点时,它崩溃了。然后我跑了npm outdated,发现有些包还没有更新。npm update在所有软件包都是最新的之前,我必须再次运行两次
npm update
npm outdated
这不应该发生——也许您的 npm 版本已损坏或过时。如果您使用的是 Homebrew,则可以运行(在命令行中)brew update、然后brew remove npm、然后brew install npm重新安装所有内容。希望这将使一切恢复正常运行!
brew update
brew remove npm
brew install npm