以下 npm install 语句之间有什么区别?

What is the difference between the following npm install statements?

npm install @uiw/react-monacoeditor --save

VS

npm i @uiw/react-monacoeditor

以下 npm install 语句何时使用 --save 标志有什么区别?

目前它们完全没有区别。由于 NPM 5 包在安装时会自动保存到 package.json 依赖项中。

npm I 是 npm install 的简写版本,因此命令的一部分也没有任何不同。

您可以在此处阅读有关安装命令的更多信息:https://docs.npmjs.com/cli/v8/commands/npm-install

确实有说“默认情况下 npm install 将任何指定的包保存到依赖项中。”