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

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

    Update: Since the --prefix option exists, I now vote for @coudy's answer to this question. Original answer below:

    No, npm will always install in the current directory or, with -g, in the system wide node_modules. You can kind of accomplish this with a subshell though, which won't affect your current directory:

    (cd some_project && npm install)
    

    The parentheses makes it run in a subshell.

    0 讨论(0)
  • 2020-12-12 12:27

    On Windows 10 I couldn't get --prefix to work, so I had to cd and execute it.

    cd PATH_TO_FOLDER && npm install 
    
    0 讨论(0)
  • 2020-12-12 12:29

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

    npm --prefix ./some_project install ./some_project
    
    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题