简体   繁体   中英

Cant install deep nested node js modules


I'm trying to install nightmare module to my project but i'm facing some problems.
When i run npm install nightmare --save it all works , and npm returns OK but visual studios says that i reached the max character limit , because of nightmare deeply nested dependencies.The project is already in the shortest path , but the modules still go over the character limit.

Im running windows 10 x64 bit , node v 4.1.0 , npm 2.14.3, visual studios 2015 community with NTVS 1.0 .

I know its a common bug and i searched the web for it , but couldn't find a proper solution.Help is much appreciated

Cheers!

Use Windows subst command to create a virtual drive letter for your source code folder containing the nested node_modules folders:

subst s: c:\\path\\to\\my\\long\\folder\\structure\\code\\

Then try to open your project in Visual Studio from drive s:\\

Well i installed the latest npm and it fixed it for me. The npm 3 will install all modules in the parent folder , but remembers the 'tree'.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM