标签: node.js npm
在npm中,如何跳过已在全局存储库中安装的软件包的安装?
例如:
package.json :
{ "dependencies" : { "ytsr" : "", "cheerio" : "", "express" : "", "request" : "" } }
在上面的示例中,我已经在 global 存储库中安装了express和request。我只想在本地安装ytsr和cheerio软件包。
express
request
ytsr
cheerio