npm - install dependencies for a package in a different folder?

后端 未结 4 942
广开言路
广开言路 2020-12-12 11:34

I have the following directory structure:

/some_project
    source.js
    package.json

I would like to install the dependencies for some_pr

4条回答
  •  清歌不尽
    2020-12-12 12:29

    You can use the npm install variant with the --prefix option. In your scenario the folder and prefix will be the same:

    npm --prefix ./some_project install ./some_project
    

提交回复
热议问题