安装软件包的早期版本

我使用nvm下载节点v0.4.10,并安装了npm以与该版本的节点一起使用。


我正在尝试使用安装Express


npm install express -g

我得到一个错误,表示需要节点版本> = 0.5.0。


好吧,这很奇怪,因为我遵循此处使用节点v0.4.10 的node + express + mongodb教程的说明,因此我假设express可用于节点v0.4.10。如果我的假设是正确的,我如何告诉npm获取适用于我的设置的版本?


温温酱
浏览 599回答 3
3回答

哈士奇WWW

这很容易。只需编写此代码,例如:npm install -g npm@4.6.1要么:npm install -g npm@latest    // For the last stable versionnpm install -g npm@next      // For the most recent release

慕田峪4524236

首先删除旧版本,然后运行字面上以下几点:npm install express@3.X并且稳定或最近npm install -g npm@latest    // For the last stable versionnpm install -g npm@next      // For the most recent release
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js