Is it possible to specify a target directory when running npm install <package>?
Is it possible to specify a target directory when running npm install <package> ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
--prefixoption:The package(s) will then be installed in
./install/here/node_modules. Themkdiris needed since npm might otherwise choose an already existingnode_modulesdirectory higher up in the hierarchy. (See npm documentation on folders.)