Reputation: 201
I'm a neophyte to React JS and npm. I got a problem here for installing npm. Can anyone tell me how to solve this?
$ npm install expo-cli --global npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
[..................] / fetchMetadata: WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
Upvotes: 0
Views: 617
Reputation: 24565
This is not an error, in fact it's just a valid warning. The author of the request-module (which is a dependency in many other packages and expo-cli as well obviously) decided that there will be no new features or major releases and marked the module as deprecated. It will take some time for other packages to exchange the request module for something else.
If you're interested, here's the github issue where the author discusses the reasons behind it: https://github.com/request/request/issues/3142
Upvotes: 1