Axios版本package.json

时间:2017-09-15 12:02:31

标签: node.js npm npm-install package.json

我想切换到axios 0.12版本。从最新版本回来可以吗?

"axios": {
      "version": "0.16.2",
      "resolved": "https://registry.npmjs.org/axios/-/axios-0.16.2.tgz",
      "integrity": "sha1-uk+S8XFn37q0CYN4VFS5rBScPG0=",
      "requires": {
        "follow-redirects": "1.2.4",
        "is-buffer": "1.1.5"
      }
    },

1 个答案:

答案 0 :(得分:0)

是的,这是可能的。通用表格如下:

npm install <package>@<version>

例如:npm install foobar@2.0.0

如果您想要在package.json依赖项中指定的确切版本,还可以将--save标志添加到该命令以将其添加到package.json依赖项或--save --save-exact标志。

如果您不确定可用的软件包版本,可以使用:

npm view <package> versions

我建议您浏览documentation of the npm install command

虽然与此问题完全无关,但我建议您阅读yarnyarn on SO