How can I install github project into ./node_modules/
so that ./node_modules/project
folder will contain .git
subfolder?
I have tried:
npm install git+https://github.com/user/project
but .git/
subfolder was missed in the target ./node_modules/project/
folder.
Probably there is some other way to develop other modules (from other repos) from main application?