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

后端 未结 4 943
广开言路
广开言路 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:40

    On windows 10 using powershell the only thing that worked for me without all the problems and edge-cases mentioned in this blog post was this

    Start-Process -Wait -FilePath "npm" -ArgumentList "install" -WorkingDirectory $web_dir
    

提交回复
热议问题