While attempting to set up Gulp on my Windows 10 system, I encountered an error during the local installation process.
$ node -v
v9.10.1
$ npm -v
5.6.0
I successfully installed Gulp globally:
$ npm install --global gulp-cli
$ gulp -v
CLI version 2.0.1
$ npm init
...
However, when trying to install it locally, the following issues arose:
$ npm install --save-dev gulp
npm WARN deprecated <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="adcad8c1dd80d8d9c4c1ed9e839d8395">[email protected]</a>: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
...(other warnings)
npm ERR! path C:\Users\Jose\Documents\Programacion\CSS desde 0\CSS-Clase10\node_modules\ansi-regex
npm ERR! code ENOENT
...(error details)
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Jose\AppData\Roaming\npm-cache\_logs\2018-03-30T14_43_45_408Z-debug.log
If anyone has insight into why these errors are occurring, I would greatly appreciate your input.
Thank you