如何安装小于任何特定版本的npm软件包

Moh*_*ali 3 jquery node.js npm

让我解释....

像..我想使用npm安装jQuery包,并且jquery的版本小于3.0.0。

那我该怎么办呢?

Cha*_*kar 11

您可以使用以下方法安装以下特定版本的npm软件包

npm install jquery@">=0.1.0 <3.0.0" //This is for Between two range

npm install jquery@"<3.0.0" //This is for bellow version
Run Code Online (Sandbox Code Playgroud)

您可以参考此链接以获取更多https://docs.npmjs.com/cli/install