Reputation: 1
Hi I am trying to install gulp and its not working and just returns this message.
$ npm install gulp --save-dev
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail o n node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible . Use 'npm ls graceful-fs' to find it in the tree.
npm WARN [email protected] No description
npm WARN [email protected] No repository field.
Upvotes: 0
Views: 35
Reputation: 10964
These are just Warnings that can be ignored. To check if the module was properly installed, Try the following command to check the version installed:
npm list | grep gulp
It will list the version that previous command installed. If you don't get any version, then check version of npm are you using. Kindly update the version of npm and try again. It looks like that your npm version is outdated.
npm install -g npm
Upvotes: 1