I am going through the Gulp installation training (I am writing to show that I can’t work with it and can’t fix the error) after the command
npm install gulp --save-dev
creates a folder node_modules
, in which a bunch of folders and weighs 4mb. How to fix it (so that there is a standard folder with bin
and gulp
) and why does such a problem occur?
node_modules
folder is being created is not necessary to correct. so works npm - Dmitriy Simushevgulp
folder withinnode_modules
. " - Dmitriy Simushevnpm@2.xx
and you havenpm@3.xx
(you can callnpm -v
). However, you have no problems with installing gulp. - Dmitriy Simushevnode_modules
generally should worry you last. All that is there gets there exclusively throughnpm
. - Dmitriy Simushev