gpt4 book ai didi

node.js - 如何在特定目录中安装 npm 包

转载 作者:太空宇宙 更新时间:2023-11-03 23:31:06 26 4
gpt4 key购买 nike

要在当前目录中安装 package.json 的软件包,您需要运行 npm install 命令。

是否可以在特定文件夹中安装 package.json 的软件包,而无需转到该文件夹​​?`

已经找到了 Bower 和 gulp 任务的解决方案:

bower install --config.cwd=<directory>
gulp build --cwd <directory>

但缺少 npm 的类似功能

当我运行命令时:npm install --prefix C:\Users\ng\Projects\Lottery\src\SPA我看到一个错误:

npm ERR! addLocal Could not install C:\Users\ng\Projects
npm ERR! Windows_NT 10.0.10586
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "--prefix" "C:\\Users\\ng\\Projects\\Lottery\\src\\SPA"
npm ERR! node v6.2.1
npm ERR! npm v3.9.3
npm ERR! code EISDIR
npm ERR! errno -4068
npm ERR! syscall read

npm ERR! eisdir EISDIR: illegal operation on a directory, read
npm ERR! eisdir This is most likely not a problem with npm itself
npm ERR! eisdir and is related to npm not being able to find a package.json in
npm ERR! eisdir a package you are trying to install.

npm ERR! Please include the following file with any support request:
npm ERR! C:\Users\ng\Projects\npm-debug.log

来自 documentation :

The prefix config defaults to the location where node is installed. On most systems, this is /usr/local. On windows, this is the exact location of the node.exe binary

最佳答案

这应该是解决方案:How to npm install to a specified directory?

基本上,您将前缀选项与全局选项一起使用:npm install --prefix <path/to/prefix_folder> -g

您还可以查看 documentation .

关于node.js - 如何在特定目录中安装 npm 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38244461/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com