根据节点版本,我可以使用哪个npm版本是否有限制?

时间:2018-09-02 14:15:45

标签: javascript node.js npm npm-install node-modules

有没有办法知道是否可以将特定版本的npm与节点的特定版本一起使用?

我想使用最新的npm(在撰写本文时为6.4.1)和最新的LTS(在撰写本文时为8.11.4)。

我意识到版本非常接近,可能没有问题,但是我学会了不要对我不知道的东西做假设:P

1 个答案:

答案 0 :(得分:2)

我建议您安装 nvm https://github.com/creationix/nvm/blob/master/README.md)并让其执行版本管理。

用法: 要下载,编译和安装最新版本的节点,请执行以下操作:

<link rel="shortcut icon" href="/favicon.ico">

然后在任何新的shell中使用已安装的版本:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/exit_group">

        <RelativeLayout
            android:id="@+id/RelativeLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/group_info_image"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:adjustViewBounds="true"
                android:scaleType="fitStart" />

            <TextView
                android:id="@+id/description_text"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/group_info_image"
                android:layout_marginStart="10dp"
                android:layout_marginTop="10dp"
                android:fontFamily="sans-serif"
                android:text="@string/descripcion"
                android:textColor="@color/mainColor"
                android:textSize="20sp" />

            <TextView
                android:id="@+id/group_info_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/description_text"
                android:layout_marginBottom="10dp"
                android:layout_marginStart="10dp"
                android:layout_marginTop="5dp"
                android:gravity="start"

                android:textSize="15sp" />

            <TextView
                android:id="@+id/group_info_user_number"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/group_info_description"
                android:layout_marginBottom="2dp"
                android:layout_marginStart="5dp"
                android:layout_marginTop="10dp"
                android:gravity="center"
                android:scrollbars="vertical"
                android:textColor="@android:color/black"
                android:textSize="15sp" />

            <es.tretornesp.clickerchat.NonScrollableListView
                android:id="@+id/group_info_user_list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@id/group_info_user_number"
                android:divider="@drawable/list_divider"
                android:dividerHeight="1px" />

            <Button
                android:id="@+id/delete_group"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/group_info_user_list"
                android:background="@color/mainColor"
                android:text="@string/borrar_grupo" />

            <View
                android:id="@+id/divisor"
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:layout_below="@id/delete_group"
                android:background="@color/grey" />


        </RelativeLayout>

    </ScrollView>

    <Button
        android:id="@+id/exit_group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@color/mainColor"
        android:text="@string/salir"
        android:textColor="@android:color/white" />


</RelativeLayout>

或者您可以直接运行它:

nvm install node

或者,您可以在具有所需版本的节点的子外壳中运行任意命令:

nvm use node

您还可以获取可执行文件的安装路径:

nvm run node --version

了解更多:Managing Node.js Versions with nvm