什么是“npm i -S”中的“S”

时间:2016-11-29 14:34:29

标签: npm

我在某些软件包上看到这个命令,我想知道<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app1="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".salesman.fragments.MapsFragment"> <fragment android:id="@+id/mapView" android:name="com.google.android.gms.maps.SupportMapFragment" android:layout_width="match_parent" android:layout_height="match_parent" android:clickable="true"/> </FrameLayout> 参数意味着什么,例如

-s

我的意思是,我知道,就像npm i -S classnames flexboxgrid i的缩写一样,它是某种东西的缩写,但是我试着看installnpm helpnpm help helpnpm apihelp npm,没有任何实际帮助。这就像给一个文盲字典;很多单词,但没有关于选项参数或它们的缩写。

1 个答案:

答案 0 :(得分:9)

“S”选项是npm中的“保存”选项。它将npm包添加到项目的依赖项中。您还可以通过编辑package.json文件手动添加依赖项。

要回答有关获取npm帮助的问题,请使用以下命令:

npm help i

这将为您提供“i”选项可用的所有选项的说明。